Skip to content

Commit

Permalink
Merge pull request #37 from Olian04/patch-default-colors
Browse files Browse the repository at this point in the history
fixed default colors being off
  • Loading branch information
Olian04 authored Apr 13, 2020
2 parents c504196 + 7e38a88 commit 5b76c63
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "better-logging",
"version": "4.1.0",
"version": "4.2.0",
"description": "better-logging is a drop in replacement for the default logging methods of node.js",
"main": "./index.js",
"typings": "./dist/api.d.ts",
Expand Down
8 changes: 4 additions & 4 deletions src/lib/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ export const DefaultConfig = new Config({
color: {
base: chalk.gray,
type: {
log: chalk.gray,
info: chalk.whiteBright,
warn: chalk.yellowBright,
error: chalk.redBright,
debug: chalk.cyan,
info: chalk.gray,
log: chalk.whiteBright,
error: chalk.yellowBright,
warn: chalk.blue,
}
}
});
Expand Down

0 comments on commit 5b76c63

Please sign in to comment.