From f89ef148233bf7c4d882fb422bc3fabcf4abb68b Mon Sep 17 00:00:00 2001 From: Teon Banek Date: Wed, 21 Jun 2017 16:11:25 +0200 Subject: [PATCH] Fix a minor typo when logging Reviewers: mferencevic, mislav.bradac Reviewed By: mferencevic Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D507 --- src/communication/bolt/v1/decoder/decoder.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/communication/bolt/v1/decoder/decoder.hpp b/src/communication/bolt/v1/decoder/decoder.hpp index 76a08f046..708b9e7e6 100644 --- a/src/communication/bolt/v1/decoder/decoder.hpp +++ b/src/communication/bolt/v1/decoder/decoder.hpp @@ -450,7 +450,7 @@ class Decoder { std::vector ret(size); for (int64_t i = 0; i < size; ++i) { if (!ReadTypedValue(&ret[i])) { - DLOG(WARNING) << "[ReadList] Couldn't read element {}", i; + DLOG(WARNING) << "[ReadList] Couldn't read element " << i; return false; } }