We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 122509c commit 8d91ca2Copy full SHA for 8d91ca2
examples/socket-mode-oauth/app.js
@@ -15,9 +15,9 @@ const app = new App({
15
(async () => {
16
try {
17
await app.start(process.env.PORT);
18
- console.log('⚡️ Bolt app is running! ⚡️');
+ app.logger.info('⚡️ Bolt app is running! ⚡️');
19
} catch (error) {
20
- console.error('Unable to start App', error);
+ app.logger.error('Unable to start App', error);
21
process.exit(1);
22
}
23
})();
0 commit comments