Skip to content

Commit

Permalink
fix: added missing color for Verbose logs
Browse files Browse the repository at this point in the history
  • Loading branch information
hbomb79 committed Feb 18, 2024
1 parent 2005fd9 commit e21d365
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkg/logger/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ func (e LogStatus) String() string {

func (e LogStatus) Color() *color.Color {
return []*color.Color{
color.New(color.FgWhite, color.Faint, color.Italic), // Verbose
color.New(color.FgWhite, color.Faint, color.Italic), // Debug
color.New(color.FgWhite), // Info
color.New(color.FgHiGreen), // Success
Expand Down

0 comments on commit e21d365

Please sign in to comment.