about summary refs log tree commit diff stats
path: root/032array.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 /032array.cc
parentd9025124a102fb7b421699e4e0463a3c62b261cb (diff)
downloadmu-cdd6fd09673faa6ed72d1b7f52333c12100df049.tar.gz
2313
Diffstat (limited to '032array.cc')
-rw-r--r--032array.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/032array.cc b/032array.cc
index b9a8bc9a..38b333b5 100644
--- a/032array.cc
+++ b/032array.cc
@@ -184,8 +184,8 @@ case INDEX: {
     break;
   }
   long long int src = base_address + 1 + offset_val.at(0)*size_of(element_type);
-  trace(Primitive_recipe_depth, "run") << "address to copy is " << src << end();
-  trace(Primitive_recipe_depth, "run") << "its type is " << Type[element_type->value].name << end();
+  trace(9998, "run") << "address to copy is " << src << end();
+  trace(9998, "run") << "its type is " << Type[element_type->value].name << end();
   reagent tmp;
   tmp.set_value(src);
   tmp.type = new type_tree(*element_type);