change logging level (#799)
This commit is contained in:
parent
4fde788414
commit
4b815e5935
1 changed files with 1 additions and 1 deletions
|
|
@ -217,7 +217,7 @@ public class ProcessTask implements ConsumerTask {
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
log.error("ShardId {}: Application processRecords() threw an exception when processing shard ",
|
log.error("ShardId {}: Application processRecords() threw an exception when processing shard ",
|
||||||
shardInfoId, e);
|
shardInfoId, e);
|
||||||
log.error("ShardId {}: Skipping over the following data records: {}", shardInfoId, records);
|
log.debug("ShardId {}: Skipping over the following data records: {}", shardInfoId, records);
|
||||||
} finally {
|
} finally {
|
||||||
MetricsUtil.addLatency(scope, RECORD_PROCESSOR_PROCESS_RECORDS_METRIC, startTime, MetricsLevel.SUMMARY);
|
MetricsUtil.addLatency(scope, RECORD_PROCESSOR_PROCESS_RECORDS_METRIC, startTime, MetricsLevel.SUMMARY);
|
||||||
MetricsUtil.endScope(scope);
|
MetricsUtil.endScope(scope);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue