Added trace log statement, to catch stacktraces

This commit is contained in:
Martijn van Groningen 2013-01-20 23:17:18 +01:00
parent 35cf9ee11d
commit a5bd57ed6c
1 changed files with 1 additions and 0 deletions

View File

@ -60,6 +60,7 @@ public abstract class TransportAction<Request extends ActionRequest, Response ex
try {
doExecute(request, listener);
} catch (Exception e) {
logger.trace("Error during transport action execution.", e);
listener.onFailure(e);
}
}