From: hunt Date: Mon, 17 Apr 2006 19:35:36 +0000 (+0000) Subject: Revert. X-Git-Tag: release-0.5.7~40 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=4fb2201287fbd8d922698cf798f7ba8e4c463049;p=systemtap.git Revert. --- diff --git a/tapset/logging.stp b/tapset/logging.stp index 659ef3892..afbb01830 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) %{