Home / Function/ ErrorLoggerT() — gin Function Reference

ErrorLoggerT() — gin Function Reference

Architecture documentation for the ErrorLoggerT() function in logger.go from the gin codebase.

Entity Profile

Dependency Diagram

graph TD
  d4baf8a9_8236_92f8_f0af_ed91ca7f22cf["ErrorLoggerT()"]
  c38adc7f_4669_446f_59f7_d983937225c7["ErrorLogger()"]
  c38adc7f_4669_446f_59f7_d983937225c7 -->|calls| d4baf8a9_8236_92f8_f0af_ed91ca7f22cf
  style d4baf8a9_8236_92f8_f0af_ed91ca7f22cf fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

logger.go lines 207–215

func ErrorLoggerT(typ ErrorType) HandlerFunc {
	return func(c *Context) {
		c.Next()
		errors := c.Errors.ByType(typ)
		if len(errors) > 0 {
			c.JSON(-1, errors)
		}
	}
}

Domain

Subdomains

Called By

Frequently Asked Questions

What does ErrorLoggerT() do?
ErrorLoggerT() is a function in the gin codebase.
What calls ErrorLoggerT()?
ErrorLoggerT() is called by 1 function(s): ErrorLogger.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free