mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 13:10:44 +00:00
downgrade some logs
This commit is contained in:
@ -186,7 +186,7 @@ public class AsyncRecordPipeLoop
|
|||||||
|
|
||||||
if(recordCount > 0)
|
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);
|
return (recordCount);
|
||||||
|
@ -189,7 +189,7 @@ public class StreamedETLExecuteStep extends BaseStreamedETLStep implements Backe
|
|||||||
|
|
||||||
if(recordCount > 0)
|
if(recordCount > 0)
|
||||||
{
|
{
|
||||||
LOG.info("Processed [" + recordCount + "] records.");
|
LOG.debug("Processed [" + recordCount + "] records.");
|
||||||
}
|
}
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////////
|
||||||
|
@ -223,7 +223,7 @@ public abstract class AbstractTableSyncTransformStep extends AbstractTransformSt
|
|||||||
{
|
{
|
||||||
if(CollectionUtils.nullSafeIsEmpty(runBackendStepInput.getRecords()))
|
if(CollectionUtils.nullSafeIsEmpty(runBackendStepInput.getRecords()))
|
||||||
{
|
{
|
||||||
LOG.info("No input records were found.");
|
LOG.debug("No input records were found.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user