ExecutionContextImpl ec = runThread.getExecutionContext();
logInfo("");
logInfo("Current trace settings:");
logInfo("overall tracing is " + (ec.isTracingEnabled() ? "Enabled" : "Disabled"));
logInfo("trace shows function args - " + ec.traceShowsFunctionArgs());
logInfo("trace shows thread name - " + ec.traceShowsThreadName());
Set<String> tracedFunctions = ec.getTracedFunctions();
logInfo(tracedFunctions.size() + " functions have tracing enabled.");
for (final String tracedFunction : tracedFunctions) {