Minor logging cleanup.

pull/345/head
Brett Wooldridge 10 years ago
parent 251d01f70a
commit f063801c48

@ -366,7 +366,7 @@ public final class PoolElf
catch (Throwable e) { catch (Throwable e) {
if (isQueryTimeoutSupported == UNINITIALIZED) { if (isQueryTimeoutSupported == UNINITIALIZED) {
isQueryTimeoutSupported = FALSE; isQueryTimeoutSupported = FALSE;
LOGGER.debug("{} - Statement.setQueryTimeout() failed or is not supported ({})", poolName, e.getMessage()); LOGGER.debug("{} - Statement.setQueryTimeout() is not supported ({})", poolName, e.getMessage());
} }
} }
} }
@ -391,8 +391,8 @@ public final class PoolElf
} }
catch (Throwable e) { catch (Throwable e) {
if (isNetworkTimeoutSupported == UNINITIALIZED) { if (isNetworkTimeoutSupported == UNINITIALIZED) {
LOGGER.debug("{} Connection.setNetworkTimeout() not supported", poolName);
isNetworkTimeoutSupported = FALSE; isNetworkTimeoutSupported = FALSE;
LOGGER.debug("{} Connection.setNetworkTimeout() not supported ({})", poolName, e.getMessage());
} }
} }
} }

Loading…
Cancel
Save