Because of dependencies on a project I am working on developing a web application using the Play!Framework, I have to configure logback to prevent it from flooding my output with DEBUG messages. But as log4j is the default log library used by the Play!Framework, I don't really know how to make it consider a logback.xml configuration file.

The best would be to make the Play!Framework completely use logback/Slf4j instead of log4j. How could I do this ?

link|improve this question

80% accept rate
feedback

1 Answer

up vote 2 down vote accepted

At the moment play use log4j or juli (I'm not sure if juli works, but the code exists). There is feature-request, but unfortunately you can't use logback correctly if you have a single Logger.class. In this case %F and all other uppercase chars from PatternLayout which is discussed here.[Update]After some information from Ceki, I have now the knowledge how it can fixed in a clean way. So the feature-request can implemented in a clean way.[/update]

An idea could be to let log4j write to logback, if it will possible. Furthermore I'm thinking about creating a patch which solve this issue. So I don't want to start until this is fixed and I get some signals from the core-team that they accept any re-factoring at such a central class.

To make a long story short: At the moment it's impossible without hacking the framework. However I don't understand your problem. What do you want to do what log4j can't? Perhaps you could define your question behind in another question.

link|improve this answer
I must agree with the last part of Niels' post. What do you want to do what log4j can't? – Zenklys Aug 31 '11 at 18:00
See logback.qos.ch/reasonsToSwitch.html – Ceki Aug 31 '11 at 21:10
@Ceki: Logback have made some improvements, but I can't find a must have. And again: log4j can be extended/wrapped logback not. – niels Sep 1 '11 at 6:25
@niels Since logback-classic exposes its API via SLF4J, you would probably want to extend org.slf4j.Logger. See the org.slf4j.ext package for extension examples. The slf4j.org/xref/org/slf4j/ext/LoggerWrapper.html class should be particularly helpful. See also XLogger and XLoggerFactory in the same package. The key here is to invoke LocationAwareLogger when you can, i.e. when one of log4j, jul and logback is the backend. Anyway, I think the play.Logger class could wrap org.slf4j.Logger if that is what you wanted. – Ceki Sep 1 '11 at 7:21
I don't "want" to use logback, I just "have to", because of maven dependencies on this project. At the moment, logback lib is automatically imported into the lib folder since it is the log lib in use in this project. It makes his own life without taking care of what log4j is writing in parralel, resulting a huge mess of logs. For me log4j is just fine, but I have to deal with logback :/ I am not really an expert in that matter, until now writting a log.properties file just did what I needed. – Claw Sep 1 '11 at 12:52
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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