Minor bug fixes

This commit is contained in:
Max Bachhuber 2023-05-24 17:56:46 +02:00
parent a815351282
commit 0939eccf23
2 changed files with 3 additions and 3 deletions

View File

@ -74,8 +74,8 @@ export default class App {
this.#handleWebhook(req, res);
res.send("Queued");
} catch (e) {
res.status(400).send(e.message);
console.error(e)
res.status(400).send(e.message);
}
}

View File

@ -70,8 +70,8 @@ export default class FireflyService {
throw new FireflyException(response.status, response, await response.text())
}
const data = await response.json();
console.debug("transaction updated", data);
await response.json();
console.info("Transaction updated")
}
}