MCPcopy Create free account
hub / github.com/HyBuildNet/quic-relay / Printf

Function Printf

internal/debug/debug.go:26–30  ·  view source on GitHub ↗

Printf logs a debug message if debug mode is enabled.

(format string, v ...any)

Source from the content-addressed store, hash-verified

24
25// Printf logs a debug message if debug mode is enabled.
26func Printf(format string, v ...any) {
27 if enabled.Load() {
28 log.Printf("[DEBUG] "+format, v...)
29 }
30}

Callers 9

handlePacketMethod · 0.92
findSessionMethod · 0.92
learnServerSCIDMethod · 0.92
parseTLSClientHelloFunction · 0.92
OnPacketMethod · 0.92
backendToClientMethod · 0.92
acceptLoopMethod · 0.92
bridgeBidirectionalMethod · 0.92

Calls

no outgoing calls

Tested by

no test coverage detected