File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/org/scijava/log Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 4444 */
4545public abstract class AbstractLogService extends AbstractService implements LogService {
4646
47- private int currentLevel = System .getenv ("DEBUG" ) == null ? INFO : DEBUG ;
47+ private int currentLevel = System .getenv ("DEBUG" ) == null ? WARN : DEBUG ;
4848
4949 private Map <String , Integer > classAndPackageLevels =
5050 new HashMap <String , Integer >();
@@ -76,8 +76,8 @@ public AbstractLogService() {
7676 if (level >= 0 ) setLevel (level );
7777
7878 if (getLevel () == 0 ) {
79- // use the default, which is INFO unless the DEBUG env. variable is set
80- setLevel (System .getenv ("DEBUG" ) == null ? INFO : DEBUG );
79+ // use the default, which is WARN unless the DEBUG env. variable is set
80+ setLevel (System .getenv ("DEBUG" ) == null ? WARN : DEBUG );
8181 }
8282
8383 // populate custom class- and package-specific log level properties
You can’t perform that action at this time.
0 commit comments