Commit a00ef1e8 authored by Daniel Henninger's avatar Daniel Henninger Committed by dhenninger

Moved warnings to warning log instead of error log. ;D

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/branches@10093 b35dd754-fafc-0310-a699-88a17e54d16e
parent 76439944
......@@ -81,7 +81,7 @@ public class DbConnectionManager {
setConnectionProvider((ConnectionProvider)conClass.newInstance());
}
catch (Exception e) {
Log.error("Warning: failed to create the " +
Log.warn("Failed to create the " +
"connection provider specified by connection" +
"Provider.className. Using the default pool.", e);
setConnectionProvider(new DefaultConnectionProvider());
......@@ -115,7 +115,7 @@ public class DbConnectionManager {
} while (retryCnt <= retryMax);
if (con == null) {
Log.error("WARNING: ConnectionManager.getConnection() " +
Log.warn("ConnectionManager.getConnection() " +
"failed to obtain a connection.");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment