mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-08 00:37:27 +00:00
19 lines
430 B
Go
19 lines
430 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func logAction(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...))
|
|
}
|