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 4210c1d commit 89b0a5bCopy full SHA for 89b0a5b
mux.go
@@ -2,7 +2,6 @@ package dew
2
3
import (
4
"context"
5
- "fmt"
6
"reflect"
7
"sync"
8
)
@@ -196,7 +195,6 @@ func (mx *mux) setupHandler() {
196
195
mx.updateHandler(mQuery)
197
}
198
if mx.mHandlers[mDispatch] == nil {
199
- println("setupHandler")
200
mx.updateHandler(mDispatch)
201
202
if mx.parent != nil {
@@ -205,7 +203,6 @@ func (mx *mux) setupHandler() {
205
203
206
204
207
func (mx *mux) addHandler(t reflect.Type, h any) {
208
- println(fmt.Sprintf("addHandler: %v", t))
209
mx.entries.Store(t, &handler{handler: h, mux: mx})
210
211
0 commit comments