Commit 4154e164 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Include interceptor in error message.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@7045 b35dd754-fafc-0310-a699-88a17e54d16e
parent f810db87
...@@ -236,7 +236,7 @@ public class InterceptorManager { ...@@ -236,7 +236,7 @@ public class InterceptorManager {
} }
} }
catch (Throwable e) { catch (Throwable e) {
Log.error("Error in interceptor", e); Log.error("Error in interceptor: " + interceptor, e);
} }
} }
} }
...@@ -263,7 +263,7 @@ public class InterceptorManager { ...@@ -263,7 +263,7 @@ public class InterceptorManager {
} }
} }
catch (Throwable e) { catch (Throwable e) {
Log.error("Error in interceptor", e); Log.error("Error in interceptor: " + interceptor, e);
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment