console.log("Hello") doesn't come with any proper levels nor semantics.
Your package nodejs-whisper crashes with a popular logger framework like Pino.js. Pino omits the log method intentionally to enforce strict semantic log levelling.
Also, RFC 5424 says the same: A generic .log() function lacks explicit severity context.
So, please change any .log calls to either info or debug, whatever. Thanks
console.log("Hello")doesn't come with any proper levels nor semantics.Your package nodejs-whisper crashes with a popular logger framework like Pino.js. Pino omits the log method intentionally to enforce strict semantic log levelling.
Also, RFC 5424 says the same: A generic .log() function lacks explicit severity context.
So, please change any
.logcalls to either info or debug, whatever. Thanks