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

Function InfolnClean

util/log/log.go:221–225  ·  view source on GitHub ↗

prints the contents prefixed by a carriage return + blue info text and suffixed with a new line

(v ...any)

Source from the content-addressed store, hash-verified

219
220// prints the contents prefixed by a carriage return + blue info text and suffixed with a new line
221func InfolnClean(v ...any) {
222 fmt.Printf("\r%s %s %s: ", timeColor(timeString()), infoColor("INFO "), stackColor(stackCallerModule(3)))
223 fmt.Print(v...)
224 fmt.Println("\r")
225}
226
227// prints the contents formatted prefixed by a carriage return + blue info text and suffixed with a new line
228func InfolnfClean(format string, v ...any) {

Callers 2

mainFunction · 0.92
StopMethod · 0.92

Calls 2

timeStringFunction · 0.85
stackCallerModuleFunction · 0.85

Tested by

no test coverage detected