runGraph loglevel explanation

Hi,

Does anyone has a detailed explanation on the different “loglevel” option for runGraph? The javadoc I found only has this explanation:

-loglevel ALL | TRACE | DEBUG | INFO | WARN | ERROR | FATAL | OFF
overrides log4j configuration and sets specified logging level for rootLogger

for e.g, what’s the difference in the output file and errorlog file between loglevel set to WARN and ERROR?

Thanks,
al

Hi,
the option sets the lowest log level of messages that will be logged. The levels are sorted in ascending order (i.e. TRACE < DEBUG < … < FATAL). So if you set the level to WARN, only WARN, ERROR and FATAL messages will be logged.

Jaro