fix: correct spelling for debuglogger.InternalError() (#1784)

This commit is contained in:
Ben McClelland
2026-01-24 06:44:54 -08:00
committed by GitHub
parent ca2dd9b4b3
commit 01fc142c1e
5 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -204,7 +204,7 @@ func ProcessController(ctx *fiber.Ctx, controller Controller, s3action string, s
return ctx.Send(s3err.GetAPIErrorResponse(serr, "", "", ""))
}
debuglogger.InernalError(err)
debuglogger.InternalError(err)
ctx.Status(http.StatusInternalServerError)
// If the error is not 's3err.APIError' return 'InternalError'
+1 -1
View File
@@ -220,7 +220,7 @@ func globalErrorHandler(ctx *fiber.Ctx, er error) error {
}
// additionally log the internal error
debuglogger.InernalError(er)
debuglogger.InternalError(er)
}
ctx.Status(http.StatusInternalServerError)