Scrub basic auth header from logs (#834)

This commit is contained in:
Jari 2023-01-25 18:14:59 -06:00 committed by GitHub
parent 5a60090ddc
commit 1f2ad8da00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,7 +56,7 @@ void print_req(const req_https_t &request) {
BOOST_LOG(debug) << "DESTINATION :: "sv << request->path;
for(auto &[name, val] : request->header) {
BOOST_LOG(debug) << name << " -- " << val;
BOOST_LOG(debug) << name << " -- " << (name == "Authorization" ? "CREDENTIALS REDACTED" : val);
}
BOOST_LOG(debug) << " [--] "sv;