docs(logger): add missing inline docs
This commit is contained in:
		@ -25,14 +25,17 @@ var (
 | 
				
			|||||||
	disableColor = false
 | 
						disableColor = false
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// DisableConsoleColor disables color output in the console
 | 
				
			||||||
func DisableConsoleColor() {
 | 
					func DisableConsoleColor() {
 | 
				
			||||||
	disableColor = true
 | 
						disableColor = true
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// ErrorLogger returns a handlerfunc for any error type
 | 
				
			||||||
func ErrorLogger() HandlerFunc {
 | 
					func ErrorLogger() HandlerFunc {
 | 
				
			||||||
	return ErrorLoggerT(ErrorTypeAny)
 | 
						return ErrorLoggerT(ErrorTypeAny)
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// ErrorLoggerT returns a handlerfunc for a given error type
 | 
				
			||||||
func ErrorLoggerT(typ ErrorType) HandlerFunc {
 | 
					func ErrorLoggerT(typ ErrorType) HandlerFunc {
 | 
				
			||||||
	return func(c *Context) {
 | 
						return func(c *Context) {
 | 
				
			||||||
		c.Next()
 | 
							c.Next()
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user