Add LogSuccess
This commit is contained in:
@@ -14,6 +14,7 @@ const (
|
||||
TargetPrefix = "TARGET"
|
||||
PathPrefix = "PATH"
|
||||
ImportantPrefix = "IMPORTANT"
|
||||
SuccessPrefix = "DONE"
|
||||
)
|
||||
|
||||
// LogInfo logs an informational message
|
||||
@@ -22,6 +23,12 @@ func LogInfo(format string, args ...interface{}) {
|
||||
log.Printf("%s[%s]%s %s", BGreen, InfoPrefix, Reset, message)
|
||||
}
|
||||
|
||||
// LogSuccess logs a success message
|
||||
func LogSuccess(format string, args ...interface{}) {
|
||||
message := fmt.Sprintf(format, args...)
|
||||
log.Printf("%s%s[%s]%s %s", BBlue, On_Blue, SuccessPrefix, Reset, message)
|
||||
}
|
||||
|
||||
// LogSource logs a message about a source file/path with proper coloring
|
||||
func LogSource(format string, args ...interface{}) {
|
||||
message := fmt.Sprintf(format, args...)
|
||||
|
Reference in New Issue
Block a user