| Index: tools/tickprocessor.js
|
| diff --git a/tools/tickprocessor.js b/tools/tickprocessor.js
|
| index 73bdf354e44a6a9418fa6b7e0860ad0dae916d80..a40d95d29f6fababe6727dcf3a651ef3c15fbf2f 100644
|
| --- a/tools/tickprocessor.js
|
| +++ b/tools/tickprocessor.js
|
| @@ -262,8 +262,10 @@ TickProcessor.prototype.isJsCode = function(name) {
|
|
|
| TickProcessor.prototype.processLogFile = function(fileName) {
|
| this.lastLogFileName_ = fileName;
|
| - var contents = readFile(fileName);
|
| - this.processLogChunk(contents);
|
| + var line;
|
| + while (line = readline()) {
|
| + this.processLogLine(line);
|
| + }
|
| };
|
|
|
|
|
|
|