This closes #103

This commit is contained in:
Timothy Bish 2015-05-22 15:39:54 -04:00
commit 7043f32bb2
1 changed files with 2 additions and 1 deletions

View File

@ -348,7 +348,8 @@ public class TransportConnection implements Connection, Task, CommandVisitor {
if (responseRequired) {
if (e instanceof SecurityException || e.getCause() instanceof SecurityException) {
SERVICELOG.warn("Security Error occurred: {}", e.getMessage());
SERVICELOG.warn("Security Error occurred on connection to: {}, {}",
transport.getRemoteAddress(), e.getMessage());
}
response = new ExceptionResponse(e);
} else {