From 6a1f083370f341449e599c9d8cf430f0a922b41f Mon Sep 17 00:00:00 2001 From: Matej Ferencevic Date: Wed, 6 Sep 2017 15:54:21 +0200 Subject: [PATCH] Added parameters to query logging. Reviewers: buda Reviewed By: buda Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D757 --- src/query/interpreter.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/query/interpreter.hpp b/src/query/interpreter.hpp index ad71d203c..ab74d6aa4 100644 --- a/src/query/interpreter.hpp +++ b/src/query/interpreter.hpp @@ -190,7 +190,8 @@ class Interpreter { // have to be correct (for Bolt clients) summary["type"] = "rw"; stream.Summary(summary); - DLOG(INFO) << "Executed " << query << ", " << summary; + DLOG(INFO) << "Executed '" << query << "', params: " << params + << ", summary: " << summary; } private: