We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6758adb commit 3abfb65Copy full SHA for 3abfb65
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
})();
examples/socket-mode-oauth/package.json
@@ -10,6 +10,6 @@
10
"author": "Slack Technologies, LLC",
11
"license": "MIT",
12
"dependencies": {
13
- "@slack/bolt": "^3.10.0"
+ "@slack/bolt": "^4.2.0"
14
0 commit comments