aboutsummaryrefslogtreecommitdiff
path: root/tools/reproduceriter.js
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-09-14 14:59:48 -0700
committerAlon Zakai <alonzakai@gmail.com>2012-09-14 14:59:48 -0700
commit0466a60b5b52b2e0176f5f9a4947b820c93fdf66 (patch)
treea0f440b9ce16fd66701ecc85d6ae8fc606087162 /tools/reproduceriter.js
parent95bbfff0b1fa8cf0ab3acdafc758a285fd5ac769 (diff)
remove some shell replay debug output
Diffstat (limited to 'tools/reproduceriter.js')
-rw-r--r--tools/reproduceriter.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/reproduceriter.js b/tools/reproduceriter.js
index aba520c2..ffb5532f 100644
--- a/tools/reproduceriter.js
+++ b/tools/reproduceriter.js
@@ -45,7 +45,7 @@ if (typeof nagivator == 'undefined') {
window.rafs = [];
for (var i = 0; i < currRafs.length; i++) {
var raf = currRafs[i];
- print('calling raf: ' + raf.uid + ': ' + raf.toString().substring(0, 50));
+ print('calling raf: ' + raf.uid);// + ': ' + raf.toString().substring(0, 50));
raf();
}
// timeouts
@@ -54,7 +54,7 @@ if (typeof nagivator == 'undefined') {
window.timeouts = [];
while (timeouts.length && timeouts[timeouts.length-1].when <= now) {
var timeout = timeouts.pop();
- print('calling timeout: ' + timeout.func.uid + ': ' + timeout.func.toString().substring(0, 50));
+ print('calling timeout: ' + timeout.func.uid);// + ': ' + timeout.func.toString().substring(0, 50));
timeout.func();
}
// increment 'time'