summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tapset/logging.stp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tapset/logging.stp b/tapset/logging.stp
index 659ef389..afbb0183 100644
--- a/tapset/logging.stp
+++ b/tapset/logging.stp
@@ -9,7 +9,7 @@
// Write a message to the console (actually stderr). A newline is appended
// if the string does not end in one.
function log (msg:string) %{
- _stp_log (THIS->msg);
+ _stp_printf ("%s\n", THIS->msg);
%}
function warn (msg:string) %{