Fix: Log ignoreFilter option

This commit is contained in:
surunzi
2016-08-26 20:21:11 +08:00
parent b3b08b507e
commit 88040a9fef
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ export default class Log
this.idx = idx;
this.count = 1;
this.displayHeader = displayHeader;
this.ignoreFilter = false;
this.ignoreFilter = ignoreFilter;
if (displayHeader)
{

View File

@@ -183,7 +183,7 @@ export default class Logger extends util.Emitter
let html = '',
logs = this._logs;
logs = this._renderLogs = this._filterLogs(logs);
logs = this._filterLogs(logs);
for (let i = 0, len = logs.length; i < len; i++)
{