Skip to content

Commit

Permalink
Add warn log level, fix #14
Browse files Browse the repository at this point in the history
  • Loading branch information
Remi Hakim committed Feb 28, 2014
1 parent 8a4b371 commit 19583ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/datadog/jmxfetch/AppConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@Parameters(separators = "=")
public class AppConfig {
private static volatile AppConfig _instance = null;
private static final List<String> LOG4J_LEVELS = Arrays.asList("ALL", "DEBUG", "ERROR", "FATAL", "INFO", "OFF", "TRACE", "LEVEL");
private static final List<String> LOG4J_LEVELS = Arrays.asList("ALL", "DEBUG", "ERROR", "FATAL", "INFO", "OFF", "TRACE", "LEVEL", "WARN");

public static final String ACTION_COLLECT = "collect";
public static final String ACTION_LIST_EVERYTHING = "list_everything";
Expand Down

0 comments on commit 19583ef

Please sign in to comment.