Skip to content

Commit

Permalink
stop logging serialisation warnings (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
nordfjord authored Jul 5, 2023
1 parent dc8c4b0 commit c52ed4a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/main/java/com/birdie/kafka/connect/utils/AvroUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,6 @@ else if (!(c == '_' || (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || (c >=
}

final String sanitizedName = sanitizedNameBuilder.toString();
if (changed) {
LOGGER.warn("Field '{}' name potentially not safe for serialization, replaced with '{}'", columnName, sanitizedName);
}

return sanitizedName;
}
Expand Down

0 comments on commit c52ed4a

Please sign in to comment.