Skip to content

Commit

Permalink
Update logger.go
Browse files Browse the repository at this point in the history
Fixed Info color
  • Loading branch information
luigizuccarelli authored Feb 5, 2023
1 parent 6ba4cba commit 1482657
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ func (logger Logger) Trace(message string) {

func (logger Logger) Info(message string) {
if logger.Level == INFO || logger.Level == DEBUG || logger.Level == TRACE {
log.Printf("\x1b[1;54m [%s] \x1b[0m : %s", "INFO", message)
log.Printf("\x1b[1;94m [%s] \x1b[0m : %s", "INFO", message)
}
}

0 comments on commit 1482657

Please sign in to comment.