mirror of https://github.com/fluxcd/flux2.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
430 B
Go
20 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...))
|
|
}
|