Can I get a dummy logger from slf4j? (Think the null object design pattern.) If so, can someone provide an example? Or will I have to implement a custom logger if I want to do that?

I'm hoping to write a function along the lines of

private Logger logger;
static Logger nullLogger;

static {
    nullLogger = getMeADummyLogger();
}

public Logger getLogger() {
    return this.logger == null ? nullLogger : this.logger;
}

// then, elsewhere:
this.getLogger().info("something just happened");

and not get a NullPointerException on that last line if no logger has been set.

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

Use NOPLogger:

return this.logger == null ? NOPLogger.NOP_LOGGER : this.logger; 
link|improve this answer
Perfect, looks like that is just what I was looking for. Thanks! – Michael Kjörling Mar 22 '11 at 9:44
feedback

Your Answer

 
or
required, but never shown

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