diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-02-19 13:03:45 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-02-19 13:03:45 +0100 |
commit | bbd20cd80a4629e6105f6565011325f6829e82d2 (patch) | |
tree | 472d1449973ef1f684561eff23a1a8b4f7225758 /extension/lib/wallet/wxMessaging.ts | |
parent | 29dfafaa1282d6b1e03bd7211ce598a09c22bae7 (diff) |
remove FF wallet link
Diffstat (limited to 'extension/lib/wallet/wxMessaging.ts')
-rw-r--r-- | extension/lib/wallet/wxMessaging.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/extension/lib/wallet/wxMessaging.ts b/extension/lib/wallet/wxMessaging.ts index df79648ab..d497e5246 100644 --- a/extension/lib/wallet/wxMessaging.ts +++ b/extension/lib/wallet/wxMessaging.ts @@ -139,7 +139,8 @@ function dispatch(handlers, req, sendResponse) { }) }) .catch((e) => { - console.log("exception during wallet handler"); + console.log(`exception during wallet handler for '${req.type}'`); + console.log("request", req); console.error(e); sendResponse({ error: "exception", @@ -205,7 +206,8 @@ export function wxMain() { try { return dispatch(handlers, req, sendResponse) } catch (e) { - console.log("exception during wallet handler (dispatch)"); + console.log(`exception during wallet handler (dispatch)`); + console.log("request", req); console.error(e); sendResponse({ error: "exception", |