diff --git a/jOOQ/src/main/java/org/jooq/impl/Factory.java b/jOOQ/src/main/java/org/jooq/impl/Factory.java index 99ec8a0476..8f8442d38b 100644 --- a/jOOQ/src/main/java/org/jooq/impl/Factory.java +++ b/jOOQ/src/main/java/org/jooq/impl/Factory.java @@ -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); } } }