I'm writing a library and I use sfl4j to handle logging.

I think it's good idea as long as every body can provide it's own implementation and then, the log provided by my application will be handled correctly.

But I don't know if I have to provide an implementation as a transitive dependency or not.

Exemple :

If I only provide that :

    <dependencies>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>1.6.1</version>
        </dependency>
    </dependencies>

The user of my lib can choose the implementation, but if he just add my lib without reading configuration, it will not work

Oherwise, if I provide that :

    <dependencies>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>1.6.1</version>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-simple</artifactId>
            <version>1.6.1</version>
        </dependency>
    </dependencies>

My lib will work correctly just when adding dependency to it, but If the user want to use an other slf4j, he will have to exclude mine.

What do you thing about that?

Thanks

link|improve this question

25% accept rate
is this a maven question? if so please tag as such – Jason S Aug 18 '11 at 12:52
Thank's, to my mine, it's a general question, but in my exemple I use maven. So I should tag it ;) – Christophe Aug 18 '11 at 13:23
1  
When you say it won't work if you don't provide an implementation, you mean that your library won't work or logging won't work? – Ceki Aug 18 '11 at 23:38
feedback

1 Answer

up vote 8 down vote accepted

You never provide a log implementation. The client application has to do so. Otherwhise this would be a violation of separation of concerns. Don't do any assumptions about an unknown client.

link|improve this answer
1  
Also note that as of SLF4J version 1.6.0, if no binding can be found on the class path, slf4j-api will default to a nop-implementaiton. See also slf4j.org/manual.html#libraries – Ceki Aug 19 '11 at 22:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.