improve error message

This commit is contained in:
Florian Dold 2016-11-18 01:37:01 +01:00
parent 8db3e73606
commit 2986afb3d4

View File

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