Skip to content

Commit

Permalink
Remove a forgotten debug statement
Browse files Browse the repository at this point in the history
  • Loading branch information
K-Phoen committed Jan 22, 2025
1 parent 478cd70 commit 3699f5b
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions pkg/grizzly/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import (
"runtime"
"strings"

"github.com/davecgh/go-spew/spew"
"github.com/go-chi/chi"
"github.com/go-chi/chi/middleware"
"github.com/gorilla/websocket"
Expand Down Expand Up @@ -156,7 +155,6 @@ func (s *Server) applyStaticProxyConfig(r chi.Router, config StaticProxyConfig)
}
for pattern, response := range config.MockGet {
r.Get(s.proxySubPath+pattern, s.mockHandler(response))
spew.Dump(s.proxySubPath + pattern)
}
for pattern, response := range config.MockPost {
r.Post(s.proxySubPath+pattern, s.mockHandler(response))
Expand Down

0 comments on commit 3699f5b

Please sign in to comment.