Skip to content

Commit

Permalink
fix: removed invalid logLevel from bot index.js file
Browse files Browse the repository at this point in the history
  • Loading branch information
NichArchA82 committed Sep 5, 2024
1 parent 1143c5b commit 3908a9b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions bot/src/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import pkg from '@slack/bolt'
const { App, LogLevel } = pkg;
const { App } = pkg;
import CH from 'command-handler';
import path from 'path';
import 'dotenv/config';
Expand All @@ -22,7 +22,6 @@ const app = new App({
signingSecret: process.env.SIGNING_SECRET,
socketMode: true,
appToken: process.env.APP_TOKEN,
logLevel: LogLevel.TRACE,
logger: customLogger,
});

Expand Down

0 comments on commit 3908a9b

Please sign in to comment.