Skip to content

Commit

Permalink
Set info log level by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Uxio0 committed Aug 1, 2023
1 parent 538219d commit 711c830
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "safe-events-service",
"version": "0.2.0",
"version": "0.2.1",
"description": "",
"author": "",
"private": true,
Expand Down
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ async function bootstrap() {
logger:
process.env.NODE_ENV === 'production'
? new JsonConsoleLogger('', {
logLevels: ['error', 'warn'],
logLevels: ['log', 'error', 'warn'],
timestamp: false,
})
: ['log', 'debug', 'error', 'verbose', 'warn'],
: ['verbose', 'debug', 'log', 'error', 'warn'],
});

// Swagger Configuration
Expand Down

0 comments on commit 711c830

Please sign in to comment.