MCPcopy
hub / github.com/wailsapp/wails / LogDebugf

Function LogDebugf

v2/pkg/runtime/log.go:67–71  ·  view source on GitHub ↗

LogDebugf prints a Debug level message

(ctx context.Context, format string, args ...interface{})

Source from the content-addressed store, hash-verified

65
66// LogDebugf prints a Debug level message
67func LogDebugf(ctx context.Context, format string, args ...interface{}) {
68 msg := fmt.Sprintf(format, args...)
69 myLogger := getLogger(ctx)
70 myLogger.Debug(msg)
71}
72
73// LogInfof prints a Info level message
74func LogInfof(ctx context.Context, format string, args ...interface{}) {

Callers

nothing calls this directly

Calls 2

getLoggerFunction · 0.85
DebugMethod · 0.65

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…