Skip to content

Commit

Permalink
change log level
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse Collier committed Aug 17, 2017
1 parent 336cfc9 commit e0ff940
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ private void retryPutRecords(String streamName, List<PutRecordsRequestEntry> ent
final PutRecordsRequestEntry putRecordRequestEntry = entries.get(i);
final PutRecordsResultEntry putRecordsResultEntry = putRecordsResultEntryList.get(i);
if (putRecordsResultEntry.getErrorCode() != null) {
log.error("putRecords returned error: (" + putRecordsResultEntry.getErrorCode() + ") " + putRecordsResultEntry.getErrorMessage());
log.debug("putRecords returned error: (" + putRecordsResultEntry.getErrorCode() + ") " + putRecordsResultEntry.getErrorMessage());
failedRecordsList.add(putRecordRequestEntry);
}
}
Expand Down

0 comments on commit e0ff940

Please sign in to comment.