about summary refs log tree commit diff stats
path: root/012transform.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-10-18 10:44:40 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-10-18 10:44:40 -0700
commit5813bcfc7d5c368514554d712da45584b5114f0b (patch)
tree09a68f2b2be114d962c8db1ff500c34ee982303d /012transform.cc
parentc83f3bca47b1538ce469fc4463d6165156735675 (diff)
downloadmu-5813bcfc7d5c368514554d712da45584b5114f0b.tar.gz
3520
Drop a few debug prints. Hopefully now we need never duplicate trace
statements and can instead just dump them to screen.

I'll soon need the ability to selectively dump traces for a specific
label.
Diffstat (limited to '012transform.cc')
-rw-r--r--012transform.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/012transform.cc b/012transform.cc
index 3a23efeb..7b29d326 100644
--- a/012transform.cc
+++ b/012transform.cc
@@ -45,9 +45,7 @@ void initialize_transforms() {
 
 void transform_all() {
   trace(9990, "transform") << "=== transform_all()" << end();
-//?   cerr << "=== transform_all\n";
   for (int t = 0; t < SIZE(Transform); ++t) {
-//?     cerr << "transform " << t << '\n';
     for (map<recipe_ordinal, recipe>::iterator p = Recipe.begin(); p != Recipe.end(); ++p) {
       recipe& r = p->second;
       if (r.transformed_until != t-1) continue;
@@ -56,7 +54,6 @@ void transform_all() {
       r.transformed_until = t;
     }
   }
-//?   cerr << "wrapping up transform\n";
   parse_int_reagents();  // do this after all other transforms have run
   // End transform_all
 }