- use a better logger separation - use tags not not overload the CI output - removed lot of log.Println/Fatal/Error
10 lines
130 B
Go
10 lines
130 B
Go
//go:build ci
|
|
// +build ci
|
|
|
|
package logger
|
|
|
|
// CI should be no-op
|
|
func message(color string, icon Icon, msg ...any) {
|
|
// no-op
|
|
}
|