diff options
author | Alon Zakai <azakai@mozilla.com> | 2011-02-21 18:46:55 -0800 |
---|---|---|
committer | Alon Zakai <azakai@mozilla.com> | 2011-02-21 18:46:55 -0800 |
commit | b381f9f375aa479dcbd4367af19cb698d4de1b43 (patch) | |
tree | 9fba1136be6390a51e170cac6b3331a27df15cf7 /src/framework.js | |
parent | cb0b00ff98ba99dd9661de4de89f3225caed766c (diff) |
remove slow identinicer
Diffstat (limited to 'src/framework.js')
-rw-r--r-- | src/framework.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/framework.js b/src/framework.js index 959d73fd..7873353b 100644 --- a/src/framework.js +++ b/src/framework.js @@ -101,7 +101,10 @@ Substrate.prototype = { try { dprint('framework', 'Processing using ' + actor.name_ + ': ' + inputs.length); actor.items = []; // More may be added in process(); we'll get to them next time + //var t = Date.now(); outputs = actor.process(inputs); + //t = (Date.now()-t)/1000; + //dprint('framework', 'Took ' + t + ' seconds.'); dprint('framework', 'New results: ' + (outputs.length + that.results.length - currResultCount) + ' out of ' + (that.results.length + outputs.length)); } catch (e) { //print("Exception, current selected are: " + inputs.map(dump).join('\n\n')); |