change policy logs to be DEBUG

This commit is contained in:
Tal Levy 2018-04-12 15:40:20 -07:00
parent f3373f70da
commit f04c95f4c2
1 changed files with 2 additions and 2 deletions

View File

@ -177,9 +177,9 @@ public class LifecyclePolicy extends AbstractDiffable<LifecyclePolicy>
new Step.StepKey("pre-phase", "pre-action", "init"), lastStepKey));
Collections.reverse(steps);
logger.error("STEP COUNT: " + steps.size());
logger.debug("STEP COUNT: " + steps.size());
for (Step step : steps) {
logger.error(step.getKey() + " -> " + step.getNextStepKey());
logger.debug(step.getKey() + " -> " + step.getNextStepKey());
}
return steps;
}