aboutsummaryrefslogtreecommitdiff
path: root/src/framework.js
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-11-06 21:49:10 -0800
committerAlon Zakai <alonzakai@gmail.com>2011-11-06 21:49:10 -0800
commitd1ecf4208a30d73e70d3df18b462c5b5f453f8d8 (patch)
tree05ecaa4975c3978e19992d06e390f30e807438dd /src/framework.js
parent175d9a109b5f727e69649b6c663d150a1c8c1cd6 (diff)
tweak framework profiling
Diffstat (limited to 'src/framework.js')
-rw-r--r--src/framework.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/framework.js b/src/framework.js
index e682d547..668181b7 100644
--- a/src/framework.js
+++ b/src/framework.js
@@ -73,7 +73,7 @@ Substrate.prototype = {
var that = this;
function midComment(force) {
var curr = Date.now();
- if (curr - midTime > 1000 || force) {
+ if (curr - midTime > 500 || force) {
dprint('framework', '// Working on ' + that.name_ + ', so far ' + ((curr-startTime)/1000).toString().substr(0,10) + ' seconds.');
midTime = curr;
}