fix: remove debug log

This commit is contained in:
Gaukas Wang 2023-03-02 23:55:08 -07:00
parent eec9ccaa66
commit c6be42d855
No known key found for this signature in database
GPG key ID: 9E2F8986D76F8B5D

View file

@ -198,7 +198,6 @@ func (chs *ClientHelloSpec) ReadTLSExtensions(b []byte, keepPSK, allowBluntMimic
if !extensions.ReadUint16LengthPrefixed(&extData) {
return fmt.Errorf("unable to read data for extension %x", extension)
}
log.Printf("extension read: %x, %v", extension, []byte(extData))
if extension == extensionPreSharedKey && !keepPSK {
continue // skip PSK, this will result in fingerprint change!!!!
@ -359,11 +358,11 @@ func (chs *ClientHelloSpec) ImportTLSClientHello(data map[string][]byte, keepPSK
// TODO: tlsfingerprint.io should also provide application settings data
extension.(*ApplicationSettingsExtension).SupportedProtocols = []string{"h2"}
default:
if isGREASEUint16(extType) {
log.Printf("[Info] GREASE extension added without specifying Value or Data. It will be automatically re-GREASEd on ApplyPreset() call.")
} else {
if !isGREASEUint16(extType) {
log.Printf("[Warning] extension %d added without data", extType)
}
} /*else {
log.Printf("[Warning] GREASE extension added but ID/Data discarded. They will be automatically re-GREASEd on ApplyPreset() call.")
}*/
}
chs.Extensions = append(chs.Extensions, extension)
}