Skip to content

Commit

Permalink
Fixed [playframework#758] again
Browse files Browse the repository at this point in the history
  • Loading branch information
pepite committed May 24, 2011
1 parent 7dcf3c2 commit 2b0cfe7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/src/play/Logger.java
Expand Up @@ -561,7 +561,7 @@ static boolean niceThrowable(org.apache.log4j.Level level, Throwable e, String m
} else if (recordCaller) {
org.apache.log4j.Logger.getLogger(getCallerClassName(5)).log(level, sw.toString(), null);
} else {
log4j.log(level, sw.toString(), null);
log4j.log(level, sw.toString(), e);
}
}
catch (Exception e1) {
Expand Down

0 comments on commit 2b0cfe7

Please sign in to comment.