[#5186] Excessive log level when ignoring foreign key referencing an out-of-scope schema

This commit is contained in:
lukaseder 2016-04-05 11:23:51 +02:00
parent 7329d23b7a
commit 32b2dcc166

View File

@ -160,7 +160,7 @@ public class DefaultRelations implements Relations {
// [#1134] Prevent NPE's when a foreign key references a unique key
// from another schema
if (uniqueKeySchema == null) {
log.warn("Ignoring foreign key", foreignKeyName + " (" + foreignKeyColumn + ") referencing " + uniqueKeyName + " references a schema out of scope for jooq-meta: " + uniqueKeySchema);
log.info("Ignoring foreign key", foreignKeyName + " (" + foreignKeyColumn + ") referencing " + uniqueKeyName + " references a schema out of scope for jooq-meta: " + uniqueKeySchema);
return;
}