We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b813565 commit 6105244Copy full SHA for 6105244
src/com/xxdb/SimpleDBConnectionPool.java
@@ -100,6 +100,10 @@ protected class SimpleDBConnectionPoolImpl {
100
}
101
poolEntryArrayList.add(poolEntry);
102
103
+ if (userId.isEmpty() || password.isEmpty())
104
+ log.warn("Create connection pool successfully without log in.");
105
+ else
106
+ log.info("Create connection pool successfully with log in.");
107
poolEntries = new CopyOnWriteArrayList<>(poolEntryArrayList);
108
} catch (Exception e) {
109
log.error("Create connection pool failure, because " + e.getMessage());
0 commit comments