[#1828] Reduce log level for Factory deserialisation to TRACE
This commit is contained in:
parent
5b40017df6
commit
362bae68e0
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user