Skip to content

Commit

Permalink
Fix: Log ignoreFilter option
Browse files Browse the repository at this point in the history
  • Loading branch information
surunzi committed Aug 26, 2016
1 parent b3b08b5 commit 88040a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Console/Log.es6
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Console/Logger.es6
Original file line number Diff line number Diff line change
Expand Up @@ -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++)
{
Expand Down

0 comments on commit 88040a9

Please sign in to comment.