X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;ds=sidebyside;f=runtime%2Forg.argeo.slc.execution%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fexecution%2FExecutionContext.java;h=c6d8e2c338e686fa426e1362cb45027635797538;hb=237c2da124703a91c64cf0106d293f77821010e1;hp=cd2baa3da402610bc51bfa7a679432f3dda90b31;hpb=9c68f47b6636bd49d76932b496e666504db5ed71;p=gpl%2Fargeo-slc.git diff --git a/runtime/org.argeo.slc.execution/src/main/java/org/argeo/slc/execution/ExecutionContext.java b/runtime/org.argeo.slc.execution/src/main/java/org/argeo/slc/execution/ExecutionContext.java index cd2baa3da..c6d8e2c33 100644 --- a/runtime/org.argeo.slc.execution/src/main/java/org/argeo/slc/execution/ExecutionContext.java +++ b/runtime/org.argeo.slc.execution/src/main/java/org/argeo/slc/execution/ExecutionContext.java @@ -52,7 +52,7 @@ public class ExecutionContext { ExecutionFlowRuntime runtime = new ExecutionFlowRuntime(executionFlow); stack.push(runtime); - if (log.isTraceEnabled()) + if (log.isDebugEnabled()) log.debug(depthSpaces(stack.size()) + "=> " + executionFlow + " #" + getCurrentStackUuid() + ", depth=" + stack.size()); @@ -105,7 +105,7 @@ public class ExecutionContext { public static void leaveFlow(ExecutionFlow executionFlow) { Stack stack = executionContext.get().stack; - if (log.isTraceEnabled()) + if (log.isDebugEnabled()) log.debug(depthSpaces(stack.size()) + "<= " + executionFlow + " #" + getCurrentStackUuid() + ", depth=" + stack.size());