about summary refs log tree commit diff stats
path: root/049continuation.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-25 00:02:20 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-25 00:02:20 -0700
commit35064671ef90ec6e35eafd9b15363058bf4f23f4 (patch)
tree3a0b4b02cbdd1b304deb52d1673083091a1ed12d /049continuation.cc
parenta17fd65ca0124f544bd4de844f1bfe2d91b46ae6 (diff)
downloadmu-35064671ef90ec6e35eafd9b15363058bf4f23f4.tar.gz
1844 - explicitly end each trace line
More verbose, but it saves trouble when debugging; there's never
something you thought should be traced but just never came out the other
end.

Also got rid of fatal errors entirely. Everything's a warning now, and
code after a warning isn't guaranteed to run.
Diffstat (limited to '049continuation.cc')
-rw-r--r--049continuation.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/049continuation.cc b/049continuation.cc
index c292f44b..e625e7b7 100644
--- a/049continuation.cc
+++ b/049continuation.cc
@@ -30,7 +30,7 @@ case CURRENT_CONTINUATION: {
   products.resize(1);
   products.at(0).push_back(Next_continuation_id);
   ++Next_continuation_id;
-  trace("current-continuation") << "new continuation " << Next_continuation_id;
+  trace("current-continuation") << "new continuation " << Next_continuation_id << end();
   break;
 }