1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 02:10:12 +01:00

UI logging supressed for production.

This commit is contained in:
Kevin Serrano 2016-08-11 19:04:50 -07:00
parent 2b0c6953e2
commit 041538e89e
2 changed files with 1 additions and 6 deletions

File diff suppressed because one or more lines are too long

View File

@ -9,7 +9,7 @@ global.METAMASK_DEBUG = false
module.exports = configureStore
const loggerMiddleware = createLogger({
predicate: () => global.METAMASK_DEBUG ? true : false
predicate: () => global.METAMASK_DEBUG,
})
const middlewares = [thunkMiddleware, loggerMiddleware]