we are using LogBack with our project, I want to configure logger according to some Data Base values, i.e If some DB value is set to true, then logger should use both file and DB appenders, if it's false so logger must use only DB appender,

I also want to preserve using static final loggers, so I won't create a new instance each time logger is called,

so how could I do something like this?

Regards,

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

You should configure Logback programmatically as described in this example.

link|improve this answer
That's the most convenient way I found till now, and it's working for me, Thanks alot – Amr Faisal Apr 21 '11 at 8:01
feedback

Is there a specific reason behind reading the configuration property from the database? One suggestion would be to use JNDI. Logback can read JNDI configured values using the tag.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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