Change some messages from info to debug, route all soap info to debug (#151)

This commit is contained in:
Simon J
2023-03-13 08:47:32 +11:00
committed by GitHub
parent d4bed77c54
commit 7f743aaa7e
2 changed files with 5 additions and 4 deletions

View File

@@ -1066,8 +1066,9 @@ function bindSmapiSoapServiceToExpress(
soapyService.log = (type, data) => {
switch (type) {
// routing all soap info messages to debug so less noisy
case "info":
logger.info({ level: "info", data });
logger.debug({ level: "info", data });
break;
case "warn":
logger.warn({ level: "warn", data });