func log.Printf

30 uses

	log (current package)
		log.go#L407: func Printf(format string, v ...any) {

	github.com/coder/websocket
		accept.go#L120: 				log.Printf("websocket: %v", err)

	github.com/klauspost/compress/zstd
		zstd.go#L109: 		log.Printf(format, a...)

	github.com/refraction-networking/utls
		u_common.go#L339: 			log.Printf("[Warning] Unsupported extension %d added as a &GenericExtension without Data", extType)
		u_common.go#L454: 				log.Printf("[Warning] PSK extension added without data")
		u_common.go#L457: 					log.Printf("[Warning] extension %d added without data", extType)

	net/http
		client.go#L268: 			log.Printf("RoundTripper returned a response & error; ignoring response")
		cookie.go#L291: 			log.Printf("net/http: invalid Cookie.Domain %q; dropping domain attribute", c.Domain)
		cookie.go#L538: 		log.Printf("net/http: invalid byte %q in %s; dropping invalid bytes", v[i], fieldName)
		h2_bundle.go#L2010: 		debugReadLoggerf:  log.Printf,
		h2_bundle.go#L2011: 		debugWriteLoggerf: log.Printf,
		h2_bundle.go#L3222: 				log.Printf("http2: header list too large")
		h2_bundle.go#L3234: 				log.Printf("http2: invalid header: %v", invalid)
		h2_bundle.go#L3264: 			log.Printf("http2: invalid header: %v", invalid)
		h2_bundle.go#L3271: 			log.Printf("http2: invalid pseudo headers: %v", err)
		h2_bundle.go#L4734: 		log.Printf(format, args...)
		h2_bundle.go#L9357: 		log.Printf("http2: Transport encoding header %q = %q", name, value)
		h2_bundle.go#L9752: 					log.Printf("http2: 1xx informational responses too large")
		h2_bundle.go#L10396: 	log.Printf(format, args...)
		h2_bundle.go#L10947: 		log.Printf("http2: server encoding header %q = %q", k, v)
		server.go#L3650: 		log.Printf(format, args...)
		server.go#L3662: 		log.Printf(format, args...)
		server.go#L4009: 	log.Printf("%s.Write(%d) = ....", c.name, len(p))
		server.go#L4011: 	log.Printf("%s.Write(%d) = %d, %v", c.name, len(p), n, err)
		server.go#L4016: 	log.Printf("%s.Read(%d) = ....", c.name, len(p))
		server.go#L4018: 	log.Printf("%s.Read(%d) = %d, %v", c.name, len(p), n, err)
		server.go#L4023: 	log.Printf("%s.Close() = ...", c.name)
		server.go#L4025: 	log.Printf("%s.Close() = %v", c.name, err)
		transport.go#L436: 		log.Printf("Error enabling Transport HTTP/2 support: %v", err)
		transport.go#L2482: 			log.Printf("Unsolicited response received on idle HTTP channel starting with %q; err=%v", buf, peekErr)