mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-07 03:12:33 +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
@ -1854,9 +1854,10 @@ const rowFilterer = (function() {
|
|||||||
if (
|
if (
|
||||||
logEntry.dead ||
|
logEntry.dead ||
|
||||||
selectedTabId !== 0 &&
|
selectedTabId !== 0 &&
|
||||||
logEntry.tabId !== undefined &&
|
(
|
||||||
logEntry.tabId > 0 &&
|
logEntry.tabId === undefined ||
|
||||||
logEntry.tabId !== selectedTabId
|
logEntry.tabId > 0 && logEntry.tabId !== selectedTabId
|
||||||
|
)
|
||||||
) {
|
) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user