Skip to content

Commit 3abfb65

Browse files
chore(deps): bump @slack/bolt from 3.22.0 to 4.2.0 in /examples/socket-mode-oauth (#2400)
1 parent 6758adb commit 3abfb65

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/socket-mode-oauth/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ const app = new App({
1515
(async () => {
1616
try {
1717
await app.start(process.env.PORT);
18-
console.log('⚡️ Bolt app is running! ⚡️');
18+
app.logger.info('⚡️ Bolt app is running! ⚡️');
1919
} catch (error) {
20-
console.error('Unable to start App', error);
20+
app.logger.error('Unable to start App', error);
2121
process.exit(1);
2222
}
2323
})();

examples/socket-mode-oauth/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
"author": "Slack Technologies, LLC",
1111
"license": "MIT",
1212
"dependencies": {
13-
"@slack/bolt": "^3.10.0"
13+
"@slack/bolt": "^4.2.0"
1414
}
1515
}

0 commit comments

Comments
 (0)