mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
fix serialization of connection ID in filenames of qlog files (#4170)
This commit is contained in:
parent
427f53328b
commit
96ab48eb7d
5 changed files with 5 additions and 5 deletions
|
@ -59,7 +59,7 @@ func main() {
|
|||
var qconf quic.Config
|
||||
if *enableQlog {
|
||||
qconf.Tracer = func(ctx context.Context, p logging.Perspective, connID quic.ConnectionID) *logging.ConnectionTracer {
|
||||
filename := fmt.Sprintf("client_%x.qlog", connID)
|
||||
filename := fmt.Sprintf("client_%s.qlog", connID)
|
||||
f, err := os.Create(filename)
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue