From 142bd70212ddc5a62d0e349f857df932a051f7b5 Mon Sep 17 00:00:00 2001 From: Darin Kelkhoff Date: Mon, 30 Jan 2023 16:53:51 -0600 Subject: [PATCH] Revert "Turning up logging" This reverts commit e75b64563997f1668045cb28284fc83e855f7f5d. --- .../polling/PollingAutomationPerTableRunner.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/actions/automation/polling/PollingAutomationPerTableRunner.java b/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/actions/automation/polling/PollingAutomationPerTableRunner.java index a34cfa41..f5b53351 100644 --- a/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/actions/automation/polling/PollingAutomationPerTableRunner.java +++ b/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/actions/automation/polling/PollingAutomationPerTableRunner.java @@ -178,7 +178,7 @@ public class PollingAutomationPerTableRunner implements Runnable String originalThreadName = Thread.currentThread().getName(); Thread.currentThread().setName(name); - LOG.info("Running " + this.getClass().getSimpleName() + "[" + name + "]"); + LOG.debug("Running " + this.getClass().getSimpleName() + "[" + name + "]"); try { @@ -208,7 +208,7 @@ public class PollingAutomationPerTableRunner implements Runnable return; } - LOG.info(" Query for records " + automationStatus + " in " + table); + LOG.debug(" Query for records " + automationStatus + " in " + table); /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // run an async-pipe loop - that will query for records in PENDING - put them in a pipe - then apply actions to them // @@ -276,10 +276,10 @@ public class PollingAutomationPerTableRunner implements Runnable // note - this method - will re-query the objects, so we should have confidence that their data is fresh... // ////////////////////////////////////////////////////////////////////////////////////////////////////////////// List matchingQRecords = getRecordsMatchingActionFilter(session, table, records, action); - LOG.info("Of the {} records that were pending automations, {} of them match the filter on the action {}", records.size(), matchingQRecords.size(), action); + LOG.debug("Of the {} records that were pending automations, {} of them match the filter on the action {}", records.size(), matchingQRecords.size(), action); if(CollectionUtils.nullSafeHasContents(matchingQRecords)) { - LOG.info(" Processing " + matchingQRecords.size() + " records in " + table + " for action " + action); + LOG.debug(" Processing " + matchingQRecords.size() + " records in " + table + " for action " + action); applyActionToMatchingRecords(instance, session, table, matchingQRecords, action); } }