1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Set default log levels

This commit is contained in:
Dan Finlay 2017-02-20 14:30:58 -08:00
parent 8aca5bf4b5
commit b2c68c9ea3
3 changed files with 3 additions and 0 deletions

View File

@ -28,6 +28,7 @@ const noop = function () {}
const log = require('loglevel')
window.log = log
log.setLevel('info')
//
// Query String

View File

@ -25,6 +25,7 @@ const Selector = require('./development/selector')
// logger
const log = require('loglevel')
window.log = log
log.setLevel('info')
// Query String
const qs = require('qs')

View File

@ -8,6 +8,7 @@ module.exports = launchApp
const log = require('loglevel')
window.log = log
log.setLevel('warn')
function launchApp (opts) {
var accountManager = opts.accountManager