mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
373 B
23 lines
373 B
9 years ago
|
package format
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
// This is all just placeholder.
|
||
|
|
||
|
func Error(msg string, v ...interface{}) {
|
||
|
msg = "[ERROR]" + msg + "\n"
|
||
|
fmt.Fprintf(os.Stderr, msg, v...)
|
||
|
}
|
||
|
|
||
|
func Info(msg string, v ...interface{}) {
|
||
|
msg = "[INFO]" + msg + "\n"
|
||
|
fmt.Fprintf(os.Stdout, msg, v...)
|
||
|
}
|
||
|
|
||
|
func Msg(msg string, v ...interface{}) {
|
||
|
fmt.Fprintf(os.Stdout, msg, v...)
|
||
|
}
|