Skip to content

Commit

Permalink
fix: make the color of the logger more highlighted
Browse files Browse the repository at this point in the history
  • Loading branch information
iChengbo committed Sep 25, 2023
1 parent bf980c9 commit b764e7c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/utils/src/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ const bizNameColors = [
'#2e8b57',
];
const bodyColors: Record<string, string> = {
debug: '#666666',
log: '#bbbbbb',
info: '#ffffff',
warn: '#bbbbbb',
error: '#bbbbbb',
debug: '#fadb14',
log: '#8c8c8c',
info: '#52c41a',
warn: '#fa8c16',
error: '#ff4d4f',
};
const levelMarks: Record<string, string> = {
debug: 'debug',
Expand Down

0 comments on commit b764e7c

Please sign in to comment.