Skip to content

Commit cac27d4

Browse files
committed
chore: cleanup logging
1 parent 940458f commit cac27d4

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

client/opt_proxy.go

-3
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,6 @@ func (o *ProxyOption) processTransport(clientOrTransport any, depth int) error {
9393
proxyFieldType := proxyField.Type()
9494
newFuncValue := reflect.MakeFunc(proxyFieldType, func(args []reflect.Value) (results []reflect.Value) {
9595
// fmt.Println("Dynamic Proxy called with arguments:")
96-
for i, arg := range args {
97-
fmt.Printf(" Arg %d: %v\n", i, arg.Interface())
98-
}
9996
results = make([]reflect.Value, proxyFieldType.NumOut())
10097
results[0] = reflect.ValueOf(o.proxyObj)
10198
results[1] = reflect.Zero(reflect.TypeOf((*error)(nil)).Elem())

0 commit comments

Comments
 (0)