Logging level that is higher than error but less than
fatal, which is used for information messages that should
rarely be filtered.
NOTE: a reference to the "DETAIL" level from a
log4j properties file must specify the full
"DETAIL#org.cougaar.util.log.log4j.DetailPriority"
line, otherwise log4j doesn't know this class and will
default the level to "DEBUG".
For example, so set "com.foo.*" to DETAIL or higher:
...
log4j.category.com.foo=DETAIL#org.cougaar.util.log.log4j.DetailPriority
...
Other levels do not need this "#.." suffix, e.g.:
...
log4j.category.com.foo=INFO
...
|