Fix a minor typo when logging

Reviewers: mferencevic, mislav.bradac

Reviewed By: mferencevic

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D507
This commit is contained in:
Teon Banek 2017-06-21 16:11:25 +02:00
parent 44e948c769
commit f89ef14823

View File

@ -450,7 +450,7 @@ class Decoder {
std::vector<query::TypedValue> 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;
}
}