From 4f2a69b973b7ddec8168e5ff168a24ebdb21b177 Mon Sep 17 00:00:00 2001 From: Marin Tomic Date: Wed, 24 Oct 2018 17:46:37 +0200 Subject: [PATCH] Remove debug logging from stream handling in interpreter Reviewers: msantl, teon.banek Reviewed By: msantl, teon.banek Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D1699 --- src/query/interpreter.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/query/interpreter.cpp b/src/query/interpreter.cpp index befaab0e1..510ccfca5 100644 --- a/src/query/interpreter.cpp +++ b/src/query/interpreter.cpp @@ -490,7 +490,6 @@ Callback HandleStreamQuery(StreamQuery *stream_query, limit_batches.IsInt() ? std::experimental::make_optional(limit_batches.ValueInt()) : std::experimental::nullopt); - LOG(INFO) << results.size(); for (const auto &result : results) { std::map params; for (const auto ¶m : result.second) {