Remove log

Reviewers: buda

Reviewed By: buda

Differential Revision: https://phabricator.memgraph.io/D1253
This commit is contained in:
Marko Culinovic 2018-02-27 18:50:00 +01:00
parent e5f14cdcb6
commit 9af3e99928

View File

@ -26,7 +26,6 @@ std::string GraphiteFormat(const stats::StatsReq &req) {
sstr << ";" << tag.first << "=" << tag.second;
}
sstr << " " << req.value << " " << req.timestamp << "\n";
LOG(INFO) << sstr.str();
return sstr.str();
}