mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 09:07:54 +01:00
Prevent info entries from polluting logger output
These entries are meant to be shown only when using "All" mode, not when the output is narrowed to a specific tab.
This commit is contained in:
parent
0c80994124
commit
801eb43572
1 changed files with 4 additions and 3 deletions
|
@ -1854,9 +1854,10 @@ const rowFilterer = (function() {
|
|||
if (
|
||||
logEntry.dead ||
|
||||
selectedTabId !== 0 &&
|
||||
logEntry.tabId !== undefined &&
|
||||
logEntry.tabId > 0 &&
|
||||
logEntry.tabId !== selectedTabId
|
||||
(
|
||||
logEntry.tabId === undefined ||
|
||||
logEntry.tabId > 0 && logEntry.tabId !== selectedTabId
|
||||
)
|
||||
) {
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue