You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When reloading a bigger page with active chrome logger, the console first displays the chromelogger log data and then clears itself.
While "Preserve Log upon Navigation" keeps the data, the objects are not expandable any more.
The underlying problem is, that the old content script receives the messages from the background page.
Fix: In log.js, function _init() add:
window.addEventListener('beforeunload', _stopListening);
The text was updated successfully, but these errors were encountered:
When reloading a bigger page with active chrome logger, the console first displays the chromelogger log data and then clears itself.
While "Preserve Log upon Navigation" keeps the data, the objects are not expandable any more.
The underlying problem is, that the old content script receives the messages from the background page.
Fix: In log.js, function _init() add:
window.addEventListener('beforeunload', _stopListening);
The text was updated successfully, but these errors were encountered: