about summary refs log tree commit diff stats
path: root/031address.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 /031address.cc
parentd9025124a102fb7b421699e4e0463a3c62b261cb (diff)
downloadmu-cdd6fd09673faa6ed72d1b7f52333c12100df049.tar.gz
2313
Diffstat (limited to '031address.cc')
-rw-r--r--031address.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/031address.cc b/031address.cc
index 27d7fb43..813f0464 100644
--- a/031address.cc
+++ b/031address.cc
@@ -55,7 +55,7 @@ void lookup_memory(reagent& x) {
   if (x.value == 0) {
     raise_error << maybe(current_recipe_name()) << "tried to /lookup 0\n" << end();
   }
-  trace(Primitive_recipe_depth, "mem") << "location " << x.value << " is " << no_scientific(Memory[x.value]) << end();
+  trace(9999, "mem") << "location " << x.value << " is " << no_scientific(Memory[x.value]) << end();
   x.set_value(Memory[x.value]);
   drop_address_from_type(x);
   drop_one_lookup(x);