1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-07-07 10:40:49 +00:00

if devmode no logs will be sent

This commit is contained in:
MatteZ02
2020-06-17 13:20:35 +03:00
parent 44ef6cf4bc
commit e1492fb885
3 changed files with 11 additions and 8 deletions

View File

@ -7,5 +7,5 @@ const oldConsole = {};
oldConsole.log = console.log;
console.log = function (arg) {
oldConsole.log(arg);
webhookClient.send(arg);
if (!client.config.devMode) webhookClient.send(arg);
};