summaryrefslogtreecommitdiffstats
path: root/processing
diff options
context:
space:
mode:
Diffstat (limited to 'processing')
-rw-r--r--processing/src/main/java/com/yahoo/processing/execution/Execution.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/processing/src/main/java/com/yahoo/processing/execution/Execution.java b/processing/src/main/java/com/yahoo/processing/execution/Execution.java
index 957e39bf41f..9aff586ef75 100644
--- a/processing/src/main/java/com/yahoo/processing/execution/Execution.java
+++ b/processing/src/main/java/com/yahoo/processing/execution/Execution.java
@@ -310,6 +310,9 @@ public class Execution {
* Adds a trace message to this trace, if this trace has at most the given trace level
*/
public void trace(String message, int traceLevel) {
+ trace((Object)message, traceLevel);
+ }
+ public void trace(Object message, int traceLevel) {
if (this.traceLevel >= traceLevel) {
traceNode.add(new TraceNode(message, timestamp(traceLevel, forceTimestamps)));
}