Skip to content

Commit

Permalink
0002435: Warning about "Skipping index" should be debug level
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Nov 3, 2015
1 parent 0929fa6 commit 1b02255
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -360,8 +360,8 @@ protected Collection<IIndex> readIndices(Connection connection,
values.put("ORDINAL_POSITION", new Short(rs.getShort(5)));

readIndex(metaData, values, indices);
} else {
log.warn("Skipping index " + name + " of type " + type);
} else if (log.isDebugEnabled()) {
log.debug("Skipping index " + name + " of type " + type);
}
}

Expand Down

0 comments on commit 1b02255

Please sign in to comment.