diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2010-06-23 17:40:51 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2010-06-23 20:05:29 -0700 |
commit | ba792ea2020f38ebf84925e740b42823b739d0d3 (patch) | |
tree | 077e5f345ceaf6c752a2fddbea5d68199a6d572b /benchmark/run.js | |
parent | 4c21aa736f4ca631efd77203113bf879e3fe4987 (diff) | |
download | nodejs-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.js | 4 |
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); }); }; |