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.
|
|
|
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...)
|
|
|
|
}
|
|
|
|
|
|
|
|
func Success(msg string, v ...interface{}) {
|
|
|
|
msg = "[Success] " + msg + "\n"
|
|
|
|
fmt.Fprintf(os.Stdout, msg, v...)
|
|
|
|
}
|
|
|
|
|
|
|
|
func Warning(msg string, v ...interface{}) {
|
|
|
|
msg = "[Warning] " + msg + "\n"
|
|
|
|
fmt.Fprintf(os.Stdout, msg, v...)
|
|
|
|
}
|