Skip to content

Commit 294f37c

Browse files
committed
AbstractLogService: fix incorrect comment
The default level went back and forth between INFO and WARN a couple of times, but it is currently INFO.
1 parent 526b716 commit 294f37c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/scijava/log/AbstractLogService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public AbstractLogService() {
7878
if (level >= 0) setLevel(level);
7979

8080
if (getLevel() == 0) {
81-
// use the default, which is WARN unless the DEBUG env. variable is set
81+
// use the default, which is INFO unless the DEBUG env. variable is set
8282
setLevel(System.getenv("DEBUG") == null ? INFO : DEBUG);
8383
}
8484

0 commit comments

Comments
 (0)