Okay, I'm positive slf4j has hijack my original settings. Grrrrrrrr.
I made a test logger like this:
Code:
static Logger logger = org.slf4j.LoggerFactory.getLogger( JobManager.class );
And when I log to it, sure enough, it looks exactly like the other logging information that is being thrown at the screen.
What logger is this?
Code:
Sep 20, 2009 5:07:16 AM org.hibernate.cfg.Environment <clinit>
INFO: Hibernate 3.3.1.GA
Sep 20, 2009 5:07:16 AM org.hibernate.cfg.Environment <clinit>
INFO: hibernate.properties not found
Sep 20, 2009 5:07:16 AM org.hibernate.cfg.Environment buildBytecodeProvider
INFO: Bytecode provider name : javassist
Sep 20, 2009 5:07:16 AM org.hibernate.cfg.Environment <clinit>
INFO: using JDK 1.4 java.sql.Timestamp handling
Sep 20, 2009 5:07:16 AM org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
INFO: Mapping class: myproject.domain.user.UserAccount -> user_account
Sep 20, 2009 5:07:16 AM org.hibernate.cfg.HbmBinder bindSubclass
INFO: Mapping subclass: myproject.domain.jobseeker.JobSeeker -> user_account
Sep 20, 2009 5:07:16 AM org.hibernate.cfg.HbmBinder bindSubclass
INFO: Mapping subclass: myproject.domain.employer.EmployerUser -> user_account
Sep 20, 2009 5:07:16 AM org.hibernate.cfg.HbmBinder bindSubclass
.......