MCPcopy
hub / github.com/wavetermdev/waveterm / DevPrintf

Function DevPrintf

pkg/util/logutil/logutil.go:13–17  ·  view source on GitHub ↗

DevPrintf logs using log.Printf only if running in dev mode

(format string, v ...any)

Source from the content-addressed store, hash-verified

11
12// DevPrintf logs using log.Printf only if running in dev mode
13func DevPrintf(format string, v ...any) {
14 if wavebase.IsDevMode() {
15 log.Printf(format, v...)
16 }
17}

Callers 6

processToolCallFunction · 0.92
RunAIChatFunction · 0.92
handleAnthropicEventFunction · 0.92
parseOpenAIHTTPErrorFunction · 0.92
handleOpenAIEventFunction · 0.92

Calls 1

IsDevModeFunction · 0.92

Tested by

no test coverage detected