From 2b0e3f7553c864048bab7ce4dade7cadfdd18d0d Mon Sep 17 00:00:00 2001 From: Nitin Date: Thu, 28 Jan 2016 16:54:58 +0530 Subject: [PATCH] changed log level: warn instead of debug, during driver support check (logs only once) --- src/main/java/com/zaxxer/hikari/pool/PoolBase.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/zaxxer/hikari/pool/PoolBase.java b/src/main/java/com/zaxxer/hikari/pool/PoolBase.java index c60e3ae1..0dab0642 100644 --- a/src/main/java/com/zaxxer/hikari/pool/PoolBase.java +++ b/src/main/java/com/zaxxer/hikari/pool/PoolBase.java @@ -363,7 +363,7 @@ abstract class PoolBase connection.isValid(1); } catch (Throwable e) { - LOGGER.debug("{} - Failed to execute isValid() for connection, configure connection test query. ({})", poolName, e.getMessage()); + LOGGER.warn("{} - Failed to execute isValid() for connection, configure connection test query. ({})", poolName, e.getMessage()); throw e; } } @@ -372,7 +372,7 @@ abstract class PoolBase executeSql(connection, config.getConnectionTestQuery(), false, isIsolateInternalQueries && !isAutoCommit); } catch (Throwable e) { - LOGGER.debug("{} - Failed to execute connection test query. ({})", poolName, e.getMessage()); + LOGGER.warn("{} - Failed to execute connection test query. ({})", poolName, e.getMessage()); throw e; } } @@ -400,7 +400,7 @@ abstract class PoolBase catch (Throwable e) { if (isQueryTimeoutSupported == UNINITIALIZED) { isQueryTimeoutSupported = FALSE; - LOGGER.debug("{} - Unable to set query timeout for statement. ({})", poolName, e.getMessage()); + LOGGER.warn("{} - Unable to set query timeout for statement. ({})", poolName, e.getMessage()); } } } @@ -426,7 +426,7 @@ abstract class PoolBase catch (Throwable e) { if (isNetworkTimeoutSupported == UNINITIALIZED) { isNetworkTimeoutSupported = FALSE; - LOGGER.debug("{} - Unable to get/set network timeout for connection. ({})", poolName, e.getMessage()); + LOGGER.warn("{} - Unable to get/set network timeout for connection. ({})", poolName, e.getMessage()); } } }