Joseph Toronto
Joseph Toronto
I've temporarily solved this by recreating the notification window in the `displayNotification` method, and passing in a reference to the view that called for the CRToast notification, and using it's...
+1 tposch's solution worked for me.
I tried everything, including adding it to the path manually, rebooting, etc... I had to install Python 3.10 from the Microsoft Store and now it seems to work.
Sure. The 'logger' here is a Pino instance. ``` export const slackClientLoggerWrapper = { debug: (...msgs) => logger.debug(msgs), info: (...msgs) => logger.info(msgs), warn: (...msgs) => logger.warn(msgs), error: (...msgs) => logger.error(msgs),...
Looking at the built-in `consoleLogger` it appears that one would need to implement something like `isMoreOrEqualSevere` in a custom logger if they want this behavior, otherwise the `getLevel` method does...
No I don't believe that will help, because when you pass in a logger, any `logger.debug` messages sent by code within bolt.js sends it to _that_ logger (`this.logger`), and any...