Skip to content

Commit

Permalink
chore: remove verbose logger (#685)
Browse files Browse the repository at this point in the history
  • Loading branch information
fmartingr committed Jul 30, 2023
1 parent e0d4537 commit 307f293
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions internal/http/routes/legacy.go
Expand Up @@ -24,9 +24,6 @@ type LegacyAPIRoutes struct {
func (r *LegacyAPIRoutes) convertHttprouteParams(params gin.Params) httprouter.Params {
routerParams := httprouter.Params{}
for _, p := range params {
if p.Key == "filepath" {
r.logger.WithField("value", p.Value).Error("filepath")
}
routerParams = append(routerParams, httprouter.Param{
Key: p.Key,
Value: p.Value,
Expand Down

0 comments on commit 307f293

Please sign in to comment.