about summary refs log tree commit diff stats
path: root/056recipe_header.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-11-08 14:46:48 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-08 14:46:48 -0800
commitb954ac3812f15482db28db83a39ab7f6e56a4b06 (patch)
tree3b18b6a52897f0b52f254f379812980ebee92636 /056recipe_header.cc
parent785a60fae9e2c55951f6c2053640c4d1da1174cf (diff)
downloadmu-b954ac3812f15482db28db83a39ab7f6e56a4b06.tar.gz
2399 - consistent debug_string vocabulary
Diffstat (limited to '056recipe_header.cc')
-rw-r--r--056recipe_header.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/056recipe_header.cc b/056recipe_header.cc
index 1558ca95..85fa1c1e 100644
--- a/056recipe_header.cc
+++ b/056recipe_header.cc
@@ -165,7 +165,7 @@ void deduce_types_from_header(const recipe_ordinal r) {
         continue;
       }
       inst.ingredients.at(i).type = new type_tree(*header[inst.ingredients.at(i).name]);
-      trace(9993, "transform") << "type of " << inst.ingredients.at(i).name << " is " << dump_types(inst.ingredients.at(i)) << end();
+      trace(9993, "transform") << "type of " << inst.ingredients.at(i).name << " is " << debug_string(inst.ingredients.at(i).type) << end();
     }
     for (long long int i = 0; i < SIZE(inst.products); ++i) {
       if (inst.products.at(i).type) continue;
@@ -174,7 +174,7 @@ void deduce_types_from_header(const recipe_ordinal r) {
         continue;
       }
       inst.products.at(i).type = new type_tree(*header[inst.products.at(i).name]);
-      trace(9993, "transform") << "type of " << inst.products.at(i).name << " is " << dump_types(inst.products.at(i)) << end();
+      trace(9993, "transform") << "type of " << inst.products.at(i).name << " is " << debug_string(inst.products.at(i).type) << end();
     }
   }
 }