OPENJPA-2326. Found an errant trace statement that is not needed. Left over from a previous commit cleanup. Too much trace is generated...

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@1443682 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Kevin W. Sutter 2013-02-07 19:37:47 +00:00
parent c8dd4fc32d
commit 2facc84154
1 changed files with 0 additions and 5 deletions

View File

@ -729,11 +729,6 @@ public class JDBCStoreManager implements StoreManager, JDBCStore {
_conn.setReadOnly(false);
} catch (SQLException e) {
}
if (_log.isTraceEnabled()) {
for (OpenJPAStateManager sm: (Collection<OpenJPAStateManager>)sms) {
_log.trace("flush: "+sm.getPCState().getClass().getName() + " for oid="+sm.getObjectId());
}
}
return _conf.getUpdateManagerInstance().flush(sms, this);
}