aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/config.js
diff options
context:
space:
mode:
authorKevin Serrano <kevgagser@gmail.com>2017-10-27 08:06:33 +0800
committerGitHub <noreply@github.com>2017-10-27 08:06:33 +0800
commit4ac198eebcf2ed8d57ecb8f1a67d36d448e5a4c3 (patch)
treec2b388389b032b92eb2c7e6e63ce06df212650b4 /ui/app/config.js
parent19afb638194a11367250153a710d77011665132a (diff)
parent3deeb6df0b1335ed68a20734516f3bff790f84b1 (diff)
downloadtangerine-wallet-browser-4ac198eebcf2ed8d57ecb8f1a67d36d448e5a4c3.tar.gz
tangerine-wallet-browser-4ac198eebcf2ed8d57ecb8f1a67d36d448e5a4c3.tar.zst
tangerine-wallet-browser-4ac198eebcf2ed8d57ecb8f1a67d36d448e5a4c3.zip
Merge pull request #2275 from MetaMask/version-debugging
Add OS Version and Browser Version to State Logs
Diffstat (limited to 'ui/app/config.js')
-rw-r--r--ui/app/config.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/ui/app/config.js b/ui/app/config.js
index 0fe232c07..c14fa1d28 100644
--- a/ui/app/config.js
+++ b/ui/app/config.js
@@ -113,7 +113,13 @@ ConfigScreen.prototype.render = function () {
alignSelf: 'center',
},
onClick (event) {
- exportAsFile('MetaMask State Logs', window.logState())
+ window.logStateString((err, result) => {
+ if (err) {
+ state.dispatch(actions.displayWarning('Error in retrieving state logs.'))
+ } else {
+ exportAsFile('MetaMask State Logs', result)
+ }
+ })
},
}, 'Download State Logs'),
]),