mirror of https://github.com/apache/openjpa.git
OPENJPA-410. Committing the change to make the "connecting to database" message a Trace message instead of an Info message.
git-svn-id: https://svn.apache.org/repos/asf/openjpa/branches/1.0.x@586588 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
215efaa636
commit
a94a55d00b
|
@ -555,10 +555,10 @@ public class JDBCConfigurationImpl
|
|||
// the DB and use the connection metadata
|
||||
if (dbdictionary == null) {
|
||||
Log log = getLog(LOG_JDBC);
|
||||
if (log.isInfoEnabled()) {
|
||||
if (log.isTraceEnabled()) {
|
||||
Localizer loc = Localizer.forPackage
|
||||
(JDBCConfigurationImpl.class);
|
||||
log.info(loc.get("connecting-for-dictionary"));
|
||||
log.trace(loc.get("connecting-for-dictionary"));
|
||||
}
|
||||
|
||||
// use the base connection factory rather than the
|
||||
|
|
Loading…
Reference in New Issue