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; } }