Skip to content
This repository has been archived by the owner on Sep 24, 2023. It is now read-only.

Commit

Permalink
Switch to error log level by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Nilhcem committed May 9, 2013
1 parent fbc6410 commit 203db2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/nilhcem/hostseditor/util/Log.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import java.util.Locale;

public final class Log {
private static final int LOG_LEVEL = 4; // 1: error, 2: warn, 3: info, 4: debug
private static final int LOG_LEVEL = 1; // 1: error, 2: warn, 3: info, 4: debug

private static final boolean LOG_ERROR = LOG_LEVEL > 0;
private static final boolean LOG_WARN = LOG_LEVEL > 1;
Expand Down

0 comments on commit 203db2c

Please sign in to comment.