MCPcopy Create free account
hub / github.com/ZeppelinMC/Zeppelin / Errorlnf

Function Errorlnf

util/log/log.go:276–278  ·  view source on GitHub ↗

prints the contents prefixed by a carriage return + blue info text and suffixed with a newline and "> "

(format string, v ...any)

Source from the content-addressed store, hash-verified

274
275// prints the contents prefixed by a carriage return + blue info text and suffixed with a newline and "> "
276func Errorlnf(format string, v ...any) {
277 fmt.Printf("\r%s %s %s: %s\n\r> ", timeColor(timeString()), errorColor("ERROR"), stackColor(stackCallerModule(3)), fmt.Sprintf(format, v...))
278}
279
280// prints the contents prefixed by a carriage return + blue info text and suffixed with a newline and "> "
281func Warnln(v ...any) {

Callers 2

mainFunction · 0.92
loadPluginMethod · 0.92

Calls 2

timeStringFunction · 0.85
stackCallerModuleFunction · 0.85

Tested by

no test coverage detected