summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.base/kmodule.stp
diff options
context:
space:
mode:
authorhunt <hunt>2007-11-12 22:04:35 +0000
committerhunt <hunt>2007-11-12 22:04:35 +0000
commitdda823f922ac7294cd24eeb4b1bb7436af24c8c7 (patch)
treebf8a4507dda929f48b1ad31e216b5694e1e99384 /testsuite/systemtap.base/kmodule.stp
parenteddde980ee23baef42edb992da5cb977ba6b4c0c (diff)
downloadsystemtap-steved-dda823f922ac7294cd24eeb4b1bb7436af24c8c7.tar.gz
systemtap-steved-dda823f922ac7294cd24eeb4b1bb7436af24c8c7.tar.xz
systemtap-steved-dda823f922ac7294cd24eeb4b1bb7436af24c8c7.zip
2007-11-12 Martin Hunt <hunt@redhat.com>
* systemtap.base/*.stp: Replace log() calls with println() (or printf() if formatting would help.) * systemtap.maps/*.stp: Ditto. * systemtap.samples/*.stp: Ditto. * systemtap.stress/*.stp: Ditto.
Diffstat (limited to 'testsuite/systemtap.base/kmodule.stp')
-rw-r--r--testsuite/systemtap.base/kmodule.stp6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/systemtap.base/kmodule.stp b/testsuite/systemtap.base/kmodule.stp
index 9c718f29..19241cab 100644
--- a/testsuite/systemtap.base/kmodule.stp
+++ b/testsuite/systemtap.base/kmodule.stp
@@ -9,7 +9,7 @@ global count
probe begin
{
- log("systemtap starting probe")
+ println("systemtap starting probe")
}
probe module("ext3").function("ext3_sync_file") ?,
@@ -22,6 +22,6 @@ probe module("ext3").function("ext3_sync_file") ?,
probe end
{
- log("systemtap ending probe")
- log("count = " . sprint(count));
+ println("systemtap ending probe")
+ println("count = " . sprint(count));
}