about summary refs log tree commit diff stats
path: root/029tools.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-10-29 12:09:23 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-10-29 12:09:23 -0700
commitcdd6fd09673faa6ed72d1b7f52333c12100df049 (patch)
tree1b6355df38822a1daaf4e91df65dce556097d9bc /029tools.cc
parentd9025124a102fb7b421699e4e0463a3c62b261cb (diff)
downloadmu-cdd6fd09673faa6ed72d1b7f52333c12100df049.tar.gz
2313
Diffstat (limited to '029tools.cc')
-rw-r--r--029tools.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/029tools.cc b/029tools.cc
index fa1ae463..cb5eae0e 100644
--- a/029tools.cc
+++ b/029tools.cc
@@ -235,7 +235,7 @@ case _PRINT: {
 case _PRINT: {
   for (long long int i = 0; i < SIZE(ingredients); ++i) {
     if (is_literal(current_instruction().ingredients.at(i))) {
-      trace(Primitive_recipe_depth, "run") << "$print: " << current_instruction().ingredients.at(i).name << end();
+      trace(9998, "run") << "$print: " << current_instruction().ingredients.at(i).name << end();
       if (has_property(current_instruction().ingredients.at(i), "newline"))
         cout << '\n';
       else
@@ -243,7 +243,7 @@ case _PRINT: {
     }
     else {
       for (long long int j = 0; j < SIZE(ingredients.at(i)); ++j) {
-        trace(Primitive_recipe_depth, "run") << "$print: " << ingredients.at(i).at(j) << end();
+        trace(9998, "run") << "$print: " << ingredients.at(i).at(j) << end();
         if (j > 0) cout << " ";
         cout << no_scientific(ingredients.at(i).at(j));
       }