1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Entering main()...
Getting root logger...DONE
FATAL - root: DEBUG
FATAL - test: DEBUG
FATAL - test.subtest: DEBUG
FATAL - Setting test.subtest to WARN
FATAL - root: DEBUG
FATAL - test: DEBUG
FATAL - test.subtest: WARN
FATAL - Setting test to CRITICAL
FATAL - root: DEBUG
FATAL - test: CRITICAL
FATAL - test.subtest: WARN
FATAL - Setting test.subtest to NOT_SET_LOG_LEVEL
FATAL - root: DEBUG
FATAL - test: CRITICAL
FATAL - test.subtest: CRITICAL
FATAL - Entering writeLogMessage()...
CRITICAL - writeLogMessage()- This is a message from a different file
FATAL - Exiting writeLogMessage()...
Returned from writeLogMessage()...
REALLY exiting main()...
|