From 0e61a876bcd62b4cd8f6348fdb5c9b5f22b596cb Mon Sep 17 00:00:00 2001 From: tastytea Date: Mon, 24 Aug 2020 18:17:05 +0200 Subject: [PATCH] Indent logged headers. --- src/document.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/document.cpp b/src/document.cpp index e53f33b..b21bb5d 100644 --- a/src/document.cpp +++ b/src/document.cpp @@ -78,7 +78,8 @@ void Document::download(const string &uri, const bool temp_redirect) BOOST_LOG_TRIVIAL(debug) << "Got Headers:"; for (const auto &header : response.headers) { - BOOST_LOG_TRIVIAL(debug) << header.first << ": " << header.second; + BOOST_LOG_TRIVIAL(debug) + << " " << header.first << ": " << header.second; } switch (response.code)