Skip to content

Commit

Permalink
Avoid confusing debug log entries with DataClassRowMapper
Browse files Browse the repository at this point in the history
Closes gh-28179
  • Loading branch information
jhoeller committed Mar 16, 2022
1 parent c1261f2 commit 46363c3
Showing 1 changed file with 0 additions and 6 deletions.
Expand Up @@ -341,12 +341,6 @@ public T mapRow(ResultSet rs, int rowNumber) throws SQLException {
"Unable to map column '" + column + "' to property '" + pd.getName() + "'", ex);
}
}
else {
// No PropertyDescriptor found
if (rowNumber == 0 && logger.isDebugEnabled()) {
logger.debug("No property found for column '" + column + "' mapped to field '" + field + "'");
}
}
}

if (populatedProperties != null && !populatedProperties.equals(this.mappedProperties)) {
Expand Down

0 comments on commit 46363c3

Please sign in to comment.