MCPcopy Create free account
hub / github.com/ddev/ddev / Verbose

Function Verbose

pkg/util/utils.go:137–144  ·  view source on GitHub ↗

Verbose Output controlled by DDEV_VERBOSE environment variable

(format string, a ...any)

Source from the content-addressed store, hash-verified

135
136// Verbose Output controlled by DDEV_VERBOSE environment variable
137func Verbose(format string, a ...any) {
138 if !globalconfig.DdevVerbose || output.JSONOutput {
139 return
140 }
141 n := time.Now()
142 s := fmt.Sprintf(format, a...)
143 output.UserOut.Debugf("%s %s", n.Format("2006-01-02T15:04:05.000"), s)
144}
145
146// ShowDots displays dots one per second until done gets true
147func ShowDots() chan bool {

Callers 10

determineRouterHostnamesFunction · 0.92
ResumeMutagenSyncFunction · 0.92
MutagenSyncFlushMethod · 0.92
NewAppFunction · 0.92
IsPortActiveFunction · 0.92
getDockerManagerInstanceFunction · 0.92
CheckGoroutinesFunction · 0.85

Calls 2

DebugfMethod · 0.80
FormatMethod · 0.80

Tested by

no test coverage detected