diff options
Diffstat (limited to 'tapset/logging.stp')
-rw-r--r-- | tapset/logging.stp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tapset/logging.stp b/tapset/logging.stp index c9c60c8d..a3fcac04 100644 --- a/tapset/logging.stp +++ b/tapset/logging.stp @@ -6,11 +6,7 @@ // Public License (GPL); either version 2, or (at your option) any // later version. -function print (msg:string) %{ - _stp_print (THIS->msg); -%} - -// like print but with a newline +// send a string out with a newline function log (msg:string) %{ _stp_printf ("%s\n", THIS->msg); %} |