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 15f04c05..46f3b948 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 @@ -179,7 +179,7 @@ public class PollingAutomationPerTableRunner implements Runnable String originalThreadName = Thread.currentThread().getName(); Thread.currentThread().setName(name + StandardScheduledExecutor.newThreadNameRandomSuffix()); - LOG.debug("Running " + this.getClass().getSimpleName() + "[" + name + "]"); + LOG.info("Running " + this.getClass().getSimpleName() + "[" + name + "]"); try { @@ -209,7 +209,7 @@ public class PollingAutomationPerTableRunner implements Runnable return; } - LOG.debug(" Query for records " + automationStatus + " in " + table); + LOG.info(" 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 // @@ -277,10 +277,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.debug("Of the {} records that were pending automations, {} of them match the filter on the action {}", records.size(), matchingQRecords.size(), action); + LOG.info("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.debug(" Processing " + matchingQRecords.size() + " records in " + table + " for action " + action); + LOG.info(" Processing " + matchingQRecords.size() + " records in " + table + " for action " + action); applyActionToMatchingRecords(instance, session, table, matchingQRecords, action); } }