downgrade some logs

This commit is contained in:
Tim Chamberlain
2025-01-15 14:30:34 -06:00
parent b8ef480804
commit 64de5c9913
3 changed files with 3 additions and 3 deletions

View File

@ -186,7 +186,7 @@ public class AsyncRecordPipeLoop
if(recordCount > 0)
{
LOG.info("End of job summary", logPair("recordCount", recordCount), logPair("jobName", jobName), logPair("millis", endTime - jobStartTime), logPair("recordsPerSecond", 1000d * (recordCount / (.001d + (endTime - jobStartTime)))));
LOG.debug("End of job summary", logPair("recordCount", recordCount), logPair("jobName", jobName), logPair("millis", endTime - jobStartTime), logPair("recordsPerSecond", 1000d * (recordCount / (.001d + (endTime - jobStartTime)))));
}
return (recordCount);

View File

@ -189,7 +189,7 @@ public class StreamedETLExecuteStep extends BaseStreamedETLStep implements Backe
if(recordCount > 0)
{
LOG.info("Processed [" + recordCount + "] records.");
LOG.debug("Processed [" + recordCount + "] records.");
}
//////////////////////////////////////////////////////////////////////////////

View File

@ -223,7 +223,7 @@ public abstract class AbstractTableSyncTransformStep extends AbstractTransformSt
{
if(CollectionUtils.nullSafeIsEmpty(runBackendStepInput.getRecords()))
{
LOG.info("No input records were found.");
LOG.debug("No input records were found.");
return;
}