Files
katenary/internal/logger/printer_ci.go
Patrice Ferlet debe43ce34 chore(tests): enhance output
- use a better logger separation
- use tags not not overload the CI output
- removed lot of log.Println/Fatal/Error
2025-09-15 13:02:54 +02:00

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
}