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

Merge pull request #949 from MetaMask/RemoveLog

Remove log
This commit is contained in:
Kevin Serrano 2016-12-22 14:50:52 -08:00 committed by GitHub
commit 2ab34760b0

View File

@ -119,7 +119,6 @@ function remoteStoreWithLocalStorageCache (storageKey) {
var store = new RemoteStore(initState)
// cache the latest state locally
store.subscribe(function (state) {
console.log('received state update %s of %s', storageKey, state)
localStorage[storageKey] = JSON.stringify(state)
})