1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:27:45 +00:00

Everywhere: Replace a bundle of dbg with dbgln.

These changes are arbitrarily divided into multiple commits to make it
easier to find potentially introduced bugs with git bisect.
This commit is contained in:
asynts 2021-01-11 21:27:44 +01:00 committed by Andreas Kling
parent 01879d27c2
commit 6b7602d33b

View file

@ -102,13 +102,13 @@ static bool _set_algorithm(CertificateKeyAlgorithm& algorithm, const u8* value,
if (length == 8) { if (length == 8) {
// named EC key // named EC key
dbg() << "Cert.algorithm: Named EC (" << *value << "), unsupported"; dbgln("Cert.algorithm: Named EC ({}), unsupported", *value);
return false; return false;
} }
if (length == 5) { if (length == 5) {
// named EC SECP key // named EC SECP key
dbg() << "Cert.algorithm: Named EC secp (" << *value << "), unsupported"; dbgln("Cert.algorithm: Named EC secp ({}), unsupported", *value);
return false; return false;
} }
@ -142,7 +142,7 @@ static bool _set_algorithm(CertificateKeyAlgorithm& algorithm, const u8* value,
return true; return true;
} }
dbg() << "Unsupported RSA Signature mode " << value[8]; dbgln("Unsupported RSA Signature mode {}", value[8]);
return false; return false;
} }
@ -385,7 +385,6 @@ static ssize_t _parse_asn1(const Context& context, Certificate& cert, const u8*
} }
break; break;
default: default:
// dbg() << "unused field " << type;
break; break;
} }
} }