We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b00007 commit 9a6d287Copy full SHA for 9a6d287
pkg/converters/id_converter.go
@@ -6,7 +6,6 @@ import (
6
"strings"
7
8
"github.com/gofiber/fiber/v2"
9
- //log "github.com/sirupsen/logrus"
10
)
11
12
var r = regexp.MustCompile(`[\/\-]([0-9a-f]+)\/?$`)
@@ -35,8 +34,6 @@ func idFromPath(path string) string {
35
34
36
func idFromParams(c *fiber.Ctx) string {
37
ru := c.Query("redirectUrl", "")
38
- //log.Printf("REQ: %s", string(c.Request().String()))
39
- //log.Printf("RESP: %s", string(c.Response().String()))
40
if ru != "" {
41
pu, err := url.Parse(ru)
42
if err != nil {
0 commit comments