debugPrintError() — gin Function Reference
Architecture documentation for the debugPrintError() function in debug.go from the gin codebase.
Entity Profile
Dependency Diagram
graph TD 30f4a352_afcc_9483_5144_3abebac4c5ab["debugPrintError()"] ce2cf8e3_420b_e598_9442_8f932bc5cd59["debug.go"] 30f4a352_afcc_9483_5144_3abebac4c5ab -->|defined in| ce2cf8e3_420b_e598_9442_8f932bc5cd59 b1f16d01_18e5_9b42_a392_9970201fd645["IsDebugging()"] 30f4a352_afcc_9483_5144_3abebac4c5ab -->|calls| b1f16d01_18e5_9b42_a392_9970201fd645 style 30f4a352_afcc_9483_5144_3abebac4c5ab fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
debug.go lines 110–114
func debugPrintError(err error) {
if err != nil && IsDebugging() {
fmt.Fprintf(DefaultErrorWriter, "[GIN-debug] [ERROR] %v\n", err)
}
}
Domain
Subdomains
Defined In
Calls
Source
Frequently Asked Questions
What does debugPrintError() do?
debugPrintError() is a function in the gin codebase, defined in debug.go.
Where is debugPrintError() defined?
debugPrintError() is defined in debug.go at line 110.
What does debugPrintError() call?
debugPrintError() calls 1 function(s): IsDebugging.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free