forked from quic-go/quic-go
log connection IDs without the 0x prefix
This commit is contained in:
@@ -65,5 +65,5 @@ func (c ConnectionID) String() string {
|
||||
if c.Len() == 0 {
|
||||
return "(empty)"
|
||||
}
|
||||
return fmt.Sprintf("%#x", c.Bytes())
|
||||
return fmt.Sprintf("%x", c.Bytes())
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user