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

Function Info

util/log/log.go:235–238  ·  view source on GitHub ↗

prints the contents prefixed by a carriage return + blue info text

(v ...any)

Source from the content-addressed store, hash-verified

233
234// prints the contents prefixed by a carriage return + blue info text
235func Info(v ...any) {
236 fmt.Printf("\r%s %s %s: ", timeColor(timeString()), infoColor("INFO "), stackColor(stackCallerModule(3)))
237 fmt.Print(v...)
238}
239
240// prints the contents prefixed by a carriage return + blue info text
241func Infof(format string, v ...any) {

Callers 1

StartMethod · 0.92

Calls 2

timeStringFunction · 0.85
stackCallerModuleFunction · 0.85

Tested by

no test coverage detected