1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-07-24 10:42:31 +03:00

Turn "Enabling/Disabling streaming" into debug messages

This commit is contained in:
Daniele Sciascia
2019-01-15 11:05:07 +01:00
parent 1e9325197a
commit 17fc8c16de

View File

@ -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;
}