diff options
author | hunt <hunt> | 2006-04-17 19:35:36 +0000 |
---|---|---|
committer | hunt <hunt> | 2006-04-17 19:35:36 +0000 |
commit | 4fb2201287fbd8d922698cf798f7ba8e4c463049 (patch) | |
tree | 5ec539e32eedb09ea91295926a0ac362f9540cda | |
parent | 0b5e63eb3779b41d122bbdd6a45a639aececd72b (diff) | |
download | systemtap-steved-4fb2201287fbd8d922698cf798f7ba8e4c463049.tar.gz systemtap-steved-4fb2201287fbd8d922698cf798f7ba8e4c463049.tar.xz systemtap-steved-4fb2201287fbd8d922698cf798f7ba8e4c463049.zip |
Revert.
-rw-r--r-- | tapset/logging.stp | 2 |
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) %{ |