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-10-29 12:04:30 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-10-29 12:04:30 -0700
commitd9025124a102fb7b421699e4e0463a3c62b261cb (patch)
tree6f54fe4380ab9057e5656213e8240cdc3b1e4904 /056recipe_header.cc
parentdd2e01e43e971c9325b343fa3e554097e829c508 (diff)
downloadmu-d9025124a102fb7b421699e4e0463a3c62b261cb.tar.gz
2312
Diffstat (limited to '056recipe_header.cc')
-rw-r--r--056recipe_header.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/056recipe_header.cc b/056recipe_header.cc
index 38c7b204..0c09cb75 100644
--- a/056recipe_header.cc
+++ b/056recipe_header.cc
@@ -76,7 +76,7 @@ recipe add2 x:number, y:number -> z:number [
 void check_header_products(const recipe_ordinal r) {
   const recipe& rr = Recipe[r];
   if (rr.products.empty()) return;
-  trace("transform") << "checking reply instructions against header for " << rr.name << end();
+  trace(9991, "transform") << "--- checking reply instructions against header for " << rr.name << end();
   for (long long int i = 0; i < SIZE(rr.steps); ++i) {
     const instruction& inst = rr.steps.at(i);
     if (inst.operation != REPLY) continue;