remove some logging

This commit is contained in:
Florian Dold 2016-09-23 18:53:19 +02:00
parent c590e03aea
commit 667c055fc2

View File

@ -126,7 +126,6 @@ namespace TalerNotify {
}); });
addHandler("taler-create-reserve", (msg: any) => { addHandler("taler-create-reserve", (msg: any) => {
console.log("taler-create-reserve with " + JSON.stringify(msg));
let params = { let params = {
amount: JSON.stringify(msg.amount), amount: JSON.stringify(msg.amount),
callback_url: URI(msg.callback_url) callback_url: URI(msg.callback_url)
@ -140,7 +139,6 @@ namespace TalerNotify {
}); });
addHandler("taler-confirm-reserve", (msg: any, sendResponse: any) => { addHandler("taler-confirm-reserve", (msg: any, sendResponse: any) => {
console.log("taler-confirm-reserve with " + JSON.stringify(msg));
let walletMsg = { let walletMsg = {
type: "confirm-reserve", type: "confirm-reserve",
detail: { detail: {
@ -148,14 +146,12 @@ namespace TalerNotify {
} }
}; };
chrome.runtime.sendMessage(walletMsg, (resp) => { chrome.runtime.sendMessage(walletMsg, (resp) => {
console.log("confirm reserve done");
sendResponse(); sendResponse();
}); });
}); });
addHandler("taler-confirm-contract", (msg: any) => { addHandler("taler-confirm-contract", (msg: any) => {
console.log("got msg", msg);
if (!msg.contract_wrapper) { if (!msg.contract_wrapper) {
console.error("contract wrapper missing"); console.error("contract wrapper missing");
return; return;
@ -214,7 +210,6 @@ namespace TalerNotify {
}); });
addHandler("taler-get-payment", (msg: any, sendResponse: any) => { addHandler("taler-get-payment", (msg: any, sendResponse: any) => {
console.log("got taler-get-payment in content page");
const walletMsg = { const walletMsg = {
type: "execute-payment", type: "execute-payment",
detail: { detail: {
@ -223,13 +218,8 @@ namespace TalerNotify {
}; };
chrome.runtime.sendMessage(walletMsg, (resp) => { chrome.runtime.sendMessage(walletMsg, (resp) => {
console.log("got resp");
console.dir(resp);
if (!resp.success) { if (!resp.success) {
console.log("got event detail:");
console.dir(msg);
if (msg.offering_url) { if (msg.offering_url) {
console.log("offering url", msg.offering_url);
window.location.href = msg.offering_url; window.location.href = msg.offering_url;
} else { } else {
console.error("execute-payment failed"); console.error("execute-payment failed");
@ -243,7 +233,6 @@ namespace TalerNotify {
// We have the details for then payment, the merchant page // We have the details for then payment, the merchant page
// is responsible to give it to the merchant. // is responsible to give it to the merchant.
sendResponse({ sendResponse({
H_contract: msg.H_contract, H_contract: msg.H_contract,
contract: resp.contract, contract: resp.contract,