|
From: Toli K. <to...@ma...> - 2007-05-30 02:32:50
|
These are MINA debug statements. We are seeing these in stdout as well, that's b/c MINA uses either java commons logging or apache commons logging (i believe) so it's not governed by log4j properties file. I tried to get it to output somewhere else with java.util.logging.properties file, but i don't think we ever got it to work. > 04:41:36,250 [AWT-EventQueue-0] INFO events - xxx: Session xxx schedule > is daily, 00:00:00 UTC - 00:00:00 UTC > 04:41:38,406 [QFJ Timer] INFO outgoing - xxx: blah blah blah Otherwise, since you are using SLF4J, check your lib directory. You should have these: slf4j-api-1.3.0.jar slf4j-log4j12-1.3.0.jar If you have anything else, SLF4J may use a different logging provider instead of log4j so that may be why it's not picking up the configs. Also, check your session settings (or your code) and make sure you are only using the SLF4JLogFactory and not ScreenLogFactory - that would also explain what you are seeing. |