Skip to content

Commit

Permalink
remove debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
bradbanister committed Sep 5, 2024
1 parent 150c172 commit e17cfd5
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,12 @@ public R apply(final R record) {
@SuppressWarnings("unchecked")
final Map<String, Object> recordValueAsMap = (Map<String, Object>) record.value();
final String isDeletedString = (String) recordValueAsMap.get(DELETED_FIELD);
System.out.println("isDeletedString is " + isDeletedString);
isDeleted = Boolean.valueOf(isDeletedString);
} catch (final Exception e) {
throw new DataException(
"Value type must have __deleted as String: " + record.toString() + " " + e.toString());
}

System.out.println("isDeleted is " + isDeleted);

return record.newRecord(
record.topic(),
record.kafkaPartition(),
Expand Down

0 comments on commit e17cfd5

Please sign in to comment.