disable debugging logs

This commit is contained in:
Ulf Gebhardt 2022-01-12 20:44:19 +01:00
parent 85101f02b7
commit 2efdb41232
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

View File

@ -59,11 +59,13 @@ const createServer = async (context: any = serverContext): Promise<any> => {
app.use(express.text())
// Log every request
/*
app.use((req, res, next) => {
// eslint-disable-next-line no-console
console.log(req)
next()
})
*/
// Elopage Webhook
app.post('/hook/elopage/' + CONFIG.WEBHOOK_ELOPAGE_SECRET, elopageWebhook)