taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 2986afb3d4e5f750f34e68cd46e394e2da392a4a
parent 8db3e7360689a789b154e2e8a093f466a08b2185
Author: Florian Dold <florian.dold@gmail.com>
Date:   Fri, 18 Nov 2016 01:37:01 +0100

improve error message

Diffstat:
Msrc/background/background.ts | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/background/background.ts b/src/background/background.ts @@ -36,7 +36,6 @@ window.addEventListener("load", () => { (window as any).wxMessaging = wxMessaging; wxMessaging.wxMain(); }).catch((e: Error) => { - console.log("wallet failed"); - console.error(e.stack); + console.error("Loading Taler wallet background page failed.", e); }); });