16 lines
360 B
Go
16 lines
360 B
Go
package middlewares
|
|
|
|
import (
|
|
"github.com/gofiber/fiber/v3"
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func (f *Middlewares) DebugMode(c fiber.Ctx) error {
|
|
// fullURI := c.Request().URI().FullURI()
|
|
// host := c.BaseURL()
|
|
// fmt.Println(strings.Split(c.Path(), "/"))
|
|
// return c.SendString("ABC" + c.Params("+"))
|
|
log.SetLevel(log.DebugLevel)
|
|
return c.Next()
|
|
}
|