Redux-devtools-extension: maxAge console spam

Created on 12 Apr 2016  路  7Comments  路  Source: zalmoxisus/redux-devtools-extension

Is anyone else suddenly seeing this in their chrome console? Am I doing something wrong or is this expected?

maxAge 50 1
VM2605:1 maxAge 50 2
VM2605:1 maxAge 50 3
VM2605:1 maxAge 50 4
VM2605:1 maxAge 50 5
VM2605:1 maxAge 50 6
VM2605:1 maxAge 50 7
VM2605:1 maxAge 50 8
VM2605:1 maxAge 50 9
VM2605:1 maxAge 50 10
VM2605:1 maxAge 50 11
VM2605:1 maxAge 50 12
VM2605:1 maxAge 50 13
VM2605:1 maxAge 50 14
VM2605:1 maxAge 50 15
VM2605:1 maxAge 50 16
app.js:55 [HMR] connected

Most helpful comment

Oh, sorry, just forgot to remove the console log. Fill fix ASAP.

UPD: Fixed, v1.0.0.19 is available on Chrome Store. Chrome will autoupdate it in several hours.

All 7 comments

Confirming... I started seeing it too as of an hour ago.
Version: 1.0.0.18
Updated: April 12, 2016

I'm just making a guess but it looks like the root of the problem may be due to a change here https://github.com/gaearon/redux-devtools/blob/master/src/createDevTools.js#L20-L23 from a recent PR that was merged into redux-devtools.

We have multiple people seeing the same thing.

Confirm I am seeing it also

Same problem here, in the meantime, I've just added this script to prevent them:

console._log = console.log
console.log = function() {
  if (arguments[0] !== 'maxAge') {
    console._log.apply(console, arguments)
  }
}

Quick regex snippet for the Chrome console filter (with regex turned on):
^(?!maxAge).*$

Mega dirty, but temporary until root issue is fixed
screenshot 2016-04-13 12 15 58

Oh, sorry, just forgot to remove the console log. Fill fix ASAP.

UPD: Fixed, v1.0.0.19 is available on Chrome Store. Chrome will autoupdate it in several hours.

+1 tx for fixing

Was this page helpful?
0 / 5 - 0 ratings