Logging swallowed error on table creation failure

This commit is contained in:
Christian 'ketura' McCarty
2024-06-07 14:02:24 -05:00
parent 887ad1ae11
commit 02d5e4eb06

View File

@@ -189,8 +189,10 @@ public class HallRequestHandler extends LotroServerRequestHandler implements Uri
responseWriter.writeXmlResponse(null);
return;
}
catch (HallException ex) { }
catch (HallException ex) {
_log.error(ex);
}
_log.error(e);
responseWriter.writeXmlResponse(marshalException(e));
}
}