1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-22 20:37:05 +00:00

update dependencies

This commit is contained in:
Gerasimos (Makis) Maropoulos
2025-08-15 23:29:20 +03:00
parent de4f462198
commit a8a3afea22
186 changed files with 694 additions and 689 deletions

View File

@@ -130,7 +130,7 @@ func (e *Engine) SetLogger(logger *golog.Logger) *Engine {
}
// init the request logging with [DBUG].
func (e *Engine) initDebugf(format string, args ...interface{}) {
func (e *Engine) initDebugf(format string, args ...any) {
if e.logger == nil {
return
}
@@ -142,7 +142,7 @@ var skipDBUGSpace = strings.Repeat(" ", 7)
// continue debugging the same request with new lines and spacing,
// easier to read.
func (e *Engine) debugf(format string, args ...interface{}) {
func (e *Engine) debugf(format string, args ...any) {
if e.logger == nil || e.logger.Level < golog.DebugLevel {
return
}