Skip to content

Commit

Permalink
fix SLF4J-411
Browse files Browse the repository at this point in the history
  • Loading branch information
ceki committed Mar 21, 2018
1 parent 59e497e commit d7d1710
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -96,7 +96,7 @@ public boolean isDebugEnabled() {
}

public void debug(String msg) {
recordEvent(Level.TRACE, msg, null, null);
recordEvent(Level.DEBUG, msg, null, null);
}

public void debug(String format, Object arg) {
Expand Down Expand Up @@ -220,7 +220,7 @@ public boolean isWarnEnabled(Marker marker) {
}

public void warn(Marker marker, String msg) {
recordEvent(Level.WARN, msg, null, null);
recordEvent(Level.WARN, marker, msg, null, null);
}

public void warn(Marker marker, String format, Object arg) {
Expand Down

0 comments on commit d7d1710

Please sign in to comment.