[#1828] Reduce log level for Factory deserialisation to TRACE

This commit is contained in:
Lukas Eder 2012-09-14 11:50:14 +02:00
parent 5b40017df6
commit 362bae68e0

View File

@ -6713,8 +6713,8 @@ public class Factory implements FactoryOperations {
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
in.defaultReadObject();
if (log.isDebugEnabled()) {
log.debug("Deserialising", this);
if (log.isTraceEnabled()) {
log.trace("Deserialising", this);
}
Configuration registered = org.jooq.ConfigurationRegistry.provideFor(this);
@ -6722,8 +6722,8 @@ public class Factory implements FactoryOperations {
connection = registered.getConnection();
}
if (log.isDebugEnabled()) {
log.debug("Deserialised", this);
if (log.isTraceEnabled()) {
log.trace("Deserialised", this);
}
}
}