about summary refs log tree commit diff stats
path: root/027debug.cc
diff options
context:
space:
mode:
Diffstat (limited to '027debug.cc')
-rw-r--r--027debug.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/027debug.cc b/027debug.cc
index 6b409d0b..60830bd8 100644
--- a/027debug.cc
+++ b/027debug.cc
@@ -8,12 +8,12 @@ Recipe_number["$print"] = _PRINT;
 case _PRINT: {
   for (long long int i = 0; i < SIZE(ingredients); ++i) {
     if (isa_literal(current_instruction().ingredients.at(i))) {
-      trace("run") << "$print: " << current_instruction().ingredients.at(i).name;
+      trace(Primitive_recipe_depth, "run") << "$print: " << current_instruction().ingredients.at(i).name;
       cout << current_instruction().ingredients.at(i).name;
     }
     else {
       for (long long int j = 0; j < SIZE(ingredients.at(i)); ++j) {
-        trace("run") << "$print: " << ingredients.at(i).at(j);
+        trace(Primitive_recipe_depth, "run") << "$print: " << ingredients.at(i).at(j);
         if (j > 0) cout << " ";
         cout << ingredients.at(i).at(j);
       }