Skip to content

Commit 4ed7a4e

Browse files
daneshdkares
authored andcommitted
Add error message to log when runtime error is handled (fixes #213)
1 parent 2774bfc commit 4ed7a4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/jruby/rack/AbstractRackDispatcher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ protected void handleException(
4949
context.log(RackLogger.ERROR, "couldn't handle exception "+ e +" : response is committed");
5050
return;
5151
}
52-
context.log(RackLogger.DEBUG, "resetting rack response due exception");
52+
context.log(RackLogger.ERROR, "resetting rack response due to exception:" + e);
5353
response.reset();
5454

5555
afterException(request, e, response);

0 commit comments

Comments
 (0)