If we catch an arbitrary error while processing an action event, we damned
well better log it. git-svn-id: https://samskivert.googlecode.com/svn/trunk@781 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// $Id: Controller.java,v 1.14 2002/04/26 02:31:32 mdb Exp $
|
// $Id: Controller.java,v 1.15 2002/06/19 23:22:40 mdb Exp $
|
||||||
//
|
//
|
||||||
// samskivert library - useful routines for java programs
|
// samskivert library - useful routines for java programs
|
||||||
// Copyright (C) 2001 Michael Bayne
|
// Copyright (C) 2001 Michael Bayne
|
||||||
@@ -225,6 +225,7 @@ public abstract class Controller
|
|||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Log.warning("Error invoking action handler [controller=" + this +
|
Log.warning("Error invoking action handler [controller=" + this +
|
||||||
", event=" + action + "].");
|
", event=" + action + "].");
|
||||||
|
Log.logStackTrace(e);
|
||||||
// even though we choked, we still "handled" the action
|
// even though we choked, we still "handled" the action
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user