From 4726912ec83c07d8482d9800dcea9b5c37c4540e Mon Sep 17 00:00:00 2001 From: Felipe Zimmerle Date: Fri, 16 Jun 2017 22:55:15 -0300 Subject: [PATCH] Audit Log: Adds space after response size Reported at #1452 --- src/transaction.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/transaction.cc b/src/transaction.cc index 1a524a92..ddd90af6 100644 --- a/src/transaction.cc +++ b/src/transaction.cc @@ -1348,7 +1348,7 @@ std::string Transaction::toOldAuditLogFormatIndex(const std::string &filename, ss << "\" "; ss << this->m_httpCodeReturned << " "; - ss << this->m_responseBody.tellp(); + ss << this->m_responseBody.tellp() << " "; /** TODO: Check variable */ ss << utils::string::dash_if_empty( this->m_collections.resolveFirst("REFERER").get()) << " ";