From 529eb25ced3337aadafd44bcf43e3ae6f192614a Mon Sep 17 00:00:00 2001 From: Kevin Serrano Date: Wed, 8 Mar 2017 10:13:45 -0800 Subject: Convert alert to a log.error --- app/scripts/popup-core.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/scripts/popup-core.js b/app/scripts/popup-core.js index 0c97a5d19..ae8539a30 100644 --- a/app/scripts/popup-core.js +++ b/app/scripts/popup-core.js @@ -50,7 +50,7 @@ function setupControllerConnection (connectionStream, cb) { function setupApp (err, accountManager) { if (err) { - alert(err.stack) + log.error(err.stack) throw err } -- cgit