From e6be86ff0aa6f9ae3c20a73ad18c53e2a5440523 Mon Sep 17 00:00:00 2001 From: Dan Haywood Date: Sat, 3 Feb 2018 17:28:49 +0000 Subject: [PATCH] #69 - bumps up logging --- .../command/replay/impl/ReplayableCommandExecution.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/spi/command/replay/src/main/java/org/isisaddons/module/command/replay/impl/ReplayableCommandExecution.java b/modules/spi/command/replay/src/main/java/org/isisaddons/module/command/replay/impl/ReplayableCommandExecution.java index a50f04494..60659aae5 100644 --- a/modules/spi/command/replay/src/main/java/org/isisaddons/module/command/replay/impl/ReplayableCommandExecution.java +++ b/modules/spi/command/replay/src/main/java/org/isisaddons/module/command/replay/impl/ReplayableCommandExecution.java @@ -82,7 +82,7 @@ private void replicateAndRunCommands() throws StatusException { // final CommandDto commandDto = commandFetcher.fetchCommand(hwmCommand, slaveConfig); if (commandDto == null) { - LOG.debug("No more commands found, breaking out"); + LOG.info("No more commands found, breaking out"); return; } @@ -92,7 +92,7 @@ private void replicateAndRunCommands() throws StatusException { } - LOG.debug("next HWM transactionId = {}", hwmCommand.getTransactionId()); + LOG.info("next HWM transactionId = {}", hwmCommand.getTransactionId());