mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-08 16:57:29 +00:00
23 lines
532 B
Go
23 lines
532 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func logAction(format string, a ...interface{}) {
|
|
fmt.Println(`►`, fmt.Sprintf(format, a...))
|
|
}
|
|
|
|
func logGenerate(format string, a ...interface{}) {
|
|
fmt.Println(`✚`, fmt.Sprintf(format, a...))
|
|
}
|
|
|
|
func logWaiting(format string, a ...interface{}) {
|
|
fmt.Println(`◎`, fmt.Sprintf(format, a...))
|
|
}
|
|
|
|
func logSuccess(format string, a ...interface{}) {
|
|
fmt.Println(`✔`, fmt.Sprintf(format, a...))
|
|
}
|
|
|
|
func logFailure(format string, a ...interface{}) {
|
|
fmt.Println(`✗`, fmt.Sprintf(format, a...))
|
|
}
|