summaryrefslogtreecommitdiff
path: root/benchmark/run.js
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-06-23 17:40:51 -0700
committerRyan Dahl <ry@tinyclouds.org>2010-06-23 20:05:29 -0700
commitba792ea2020f38ebf84925e740b42823b739d0d3 (patch)
tree077e5f345ceaf6c752a2fddbea5d68199a6d572b /benchmark/run.js
parent4c21aa736f4ca631efd77203113bf879e3fe4987 (diff)
downloadnodejs-ba792ea2020f38ebf84925e740b42823b739d0d3.tar.gz
nodejs-ba792ea2020f38ebf84925e740b42823b739d0d3.tar.bz2
nodejs-ba792ea2020f38ebf84925e740b42823b739d0d3.zip
:%s/sys.puts/console.log/g
and there was much rejoicing
Diffstat (limited to 'benchmark/run.js')
-rw-r--r--benchmark/run.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/benchmark/run.js b/benchmark/run.js
index 7917c7688..b1479b600 100644
--- a/benchmark/run.js
+++ b/benchmark/run.js
@@ -22,9 +22,9 @@ function runNext (i) {
sys.print(benchmarks[i] + ": ");
exec(benchmarks[i], function (elapsed, code) {
if (code != 0) {
- sys.puts("ERROR ");
+ console.log("ERROR ");
}
- sys.puts(elapsed);
+ console.log(elapsed);
runNext(i+1);
});
};