Skip to content

Commit

Permalink
fix: set the instantiated log level to debug to match app
Browse files Browse the repository at this point in the history
perhaps a temporary change? #84 (comment)
  • Loading branch information
zimeg committed Aug 23, 2024
1 parent e0bdaff commit a343e1f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions app-oauth.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ registerListeners(app);
/** Start Bolt App */
(async () => {
const logger = new ConsoleLogger();
logger.setLevel(LogLevel.DEBUG);
try {
await app.start(process.env.PORT || 3000);
logger.info('⚡️ Bolt app is running!');
Expand Down
1 change: 1 addition & 0 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ registerListeners(app);
/** Start the Bolt App */
(async () => {
const logger = new ConsoleLogger();
logger.setLevel(LogLevel.DEBUG);
try {
await app.start();
logger.info('⚡️ Bolt app is running!');
Expand Down

0 comments on commit a343e1f

Please sign in to comment.