about summary refs log tree commit diff stats
path: root/subx/039debug.cc
diff options
context:
space:
mode:
Diffstat (limited to 'subx/039debug.cc')
-rw-r--r--subx/039debug.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/subx/039debug.cc b/subx/039debug.cc
index 8aa40558..a592e198 100644
--- a/subx/039debug.cc
+++ b/subx/039debug.cc
@@ -74,9 +74,9 @@ Watch_points.clear();
 :(code)
 void dump_watch_points() {
   if (Watch_points.empty()) return;
-  dbg << "watch points:" << end();
+  trace(Callstack_depth, "dbg") << "watch points:" << end();
   for (map<string, uint32_t>::iterator p = Watch_points.begin();  p != Watch_points.end();  ++p)
-    dbg << "  " << p->first << ": " << HEXWORD << p->second << " -> " << HEXWORD << read_mem_u32(p->second) << end();
+    trace(Callstack_depth, "dbg") << "  " << p->first << ": " << HEXWORD << p->second << " -> " << HEXWORD << read_mem_u32(p->second) << end();
 }
 
 :(before "End Globals")