The default log level is WARN, but this was a mistake - it prevents us from being able to print convenient statements, e.g. in ImageJ-Tutorials, without using log.warn.
So the default level should be lowered to INFO, but we will also need to take care to move many of the current log.info calls to log.debug, as we used log.info to print debugging-style statements.
The default log level is
WARN, but this was a mistake - it prevents us from being able to print convenient statements, e.g. in ImageJ-Tutorials, without usinglog.warn.So the default level should be lowered to
INFO, but we will also need to take care to move many of the currentlog.infocalls tolog.debug, as we usedlog.infoto print debugging-style statements.