From 17fc8c16de74f598db687c7a2c8b5af954f11059 Mon Sep 17 00:00:00 2001 From: Daniele Sciascia Date: Tue, 15 Jan 2019 11:05:07 +0100 Subject: [PATCH] Turn "Enabling/Disabling streaming" into debug messages --- include/wsrep/streaming_context.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/wsrep/streaming_context.hpp b/include/wsrep/streaming_context.hpp index b13f399..499ec44 100644 --- a/include/wsrep/streaming_context.hpp +++ b/include/wsrep/streaming_context.hpp @@ -50,8 +50,8 @@ namespace wsrep void enable(enum fragment_unit fragment_unit, size_t fragment_size) { - wsrep::log_info() << "Enabling streaming: " - << fragment_unit << " " << fragment_size; + wsrep::log_debug() << "Enabling streaming: " + << fragment_unit << " " << fragment_size; assert(fragment_size > 0); fragment_unit_ = fragment_unit; fragment_size_ = fragment_size; @@ -63,7 +63,7 @@ namespace wsrep void disable() { - wsrep::log_info() << "Disabling streaming"; + wsrep::log_debug() << "Disabling streaming"; fragment_size_ = 0; }