MCPcopy Create free account
hub / github.com/exercism/cli / Println

Function Println

debug/debug.go:23–27  ·  view source on GitHub ↗

Println conditionally outputs a message to Stderr

(args ...interface{})

Source from the content-addressed store, hash-verified

21
22// Println conditionally outputs a message to Stderr
23func Println(args ...interface{}) {
24 if Verbose {
25 fmt.Fprintln(output, args...)
26 }
27}
28
29// Printf conditionally outputs a formatted message to Stderr
30func Printf(format string, args ...interface{}) {

Callers 4

DumpRequestFunction · 0.85
DumpResponseFunction · 0.85
TestVerboseEnabledFunction · 0.85
TestVerboseDisabledFunction · 0.85

Calls

no outgoing calls

Tested by 2

TestVerboseEnabledFunction · 0.68
TestVerboseDisabledFunction · 0.68