Skip to content

Commit

Permalink
fix: Changed the default log level to silly
Browse files Browse the repository at this point in the history
  • Loading branch information
edgardmessias committed Feb 19, 2023
1 parent 3560b2f commit caf7275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export const formatLabelSession: FormatWrap = format(
);

export const defaultLogger = createLogger({
level: 'info',
level: 'silly',
levels: config.npm.levels,
format: format.combine(
formatLabelSession(),
Expand Down

2 comments on commit caf7275

@renandecarlo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why?

@edgardmessias
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Because I am tired to receive issues without any log.

By default, everyone not change any configuration, only use it. So with a detailed log will be helpful to discover initial problems

Please sign in to comment.