| Index: tools/logreader.js
|
| diff --git a/tools/logreader.js b/tools/logreader.js
|
| index 315e72127608f01d075d475d9112c7f2ec997fd2..e37c8eaf543527adcddc3e40787b047f9dd25eca 100644
|
| --- a/tools/logreader.js
|
| +++ b/tools/logreader.js
|
| @@ -134,9 +134,8 @@ LogReader.prototype.skipDispatch = function(dispatch) {
|
| LogReader.prototype.dispatchLogRow_ = function(fields) {
|
| // Obtain the dispatch.
|
| var command = fields[0];
|
| - if (!(command in this.dispatchTable_)) {
|
| - throw new Error('unknown command: ' + command);
|
| - }
|
| + if (!(command in this.dispatchTable_)) return;
|
| +
|
| var dispatch = this.dispatchTable_[command];
|
|
|
| if (dispatch === null || this.skipDispatch(dispatch)) {
|
|
|