Skip to content

Commit

Permalink
add space to info icon (#17)
Browse files Browse the repository at this point in the history
* add space to info icon

Signed-off-by: Daniel Grunberger <danielgrunberger@armosec.io>

* fix test

Signed-off-by: Daniel Grunberger <danielgrunberger@armosec.io>

---------

Signed-off-by: Daniel Grunberger <danielgrunberger@armosec.io>
Co-authored-by: Daniel Grunberger <danielgrunberger@armosec.io>
  • Loading branch information
Daniel-GrunbergerCA and Daniel Grunberger committed Aug 17, 2023
1 parent 60fa13b commit 6e6c374
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion iconlogger/logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ func getSymbol(level string) string {
case "debug":
return "🐞 "
default:
return "ℹ️ "
return "ℹ️ "
}
}

Expand Down
2 changes: 1 addition & 1 deletion iconlogger/logger_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ func TestGetSymbol(t *testing.T) {
{"Fatal", "fatal", "❌ "},
{"Error", "error", "❌ "},
{"Debug", "debug", "🐞 "},
{"Default", "info", "ℹ️ "},
{"Default", "info", "ℹ️ "},
}

for _, tt := range tests {
Expand Down

0 comments on commit 6e6c374

Please sign in to comment.