about summary refs log tree commit diff stats
path: root/030container.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-02-14 23:18:33 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-02-14 23:24:37 -0800
commit996a8acd6c2ce1c7d3b13cfbd799269669b0038b (patch)
tree8408c8068ad1c151d8035e0aa981ab82ee0b4b61 /030container.cc
parent3965ca030f1d68298ed652328a2f712fff7cc14e (diff)
downloadmu-996a8acd6c2ce1c7d3b13cfbd799269669b0038b.tar.gz
2656
Diffstat (limited to '030container.cc')
-rw-r--r--030container.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/030container.cc b/030container.cc
index 9cbb5c69..60b38830 100644
--- a/030container.cc
+++ b/030container.cc
@@ -555,6 +555,7 @@ Transform.push_back(check_or_set_invalid_types);  // idempotent
 :(code)
 void check_or_set_invalid_types(const recipe_ordinal r) {
   recipe& caller = get(Recipe, r);
+  trace(9991, "transform") << "--- check for invalid types in recipe " << caller.name << end();
   for (long long int index = 0; index < SIZE(caller.steps); ++index) {
     instruction& inst = caller.steps.at(index);
     for (long long int i = 0; i < SIZE(inst.ingredients); ++i) {