From 41a9a677ebfa0133df9abb48adc33a3555ecb490 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Sun, 27 Jan 2019 12:18:39 +0100 Subject: [PATCH] downgrade wsrep_plugin_init()/wsrep_plugin_deinit log messages from info to debug --- sql/wsrep_plugin.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sql/wsrep_plugin.cc b/sql/wsrep_plugin.cc index 83618a50637..743b8a593b8 100644 --- a/sql/wsrep_plugin.cc +++ b/sql/wsrep_plugin.cc @@ -20,13 +20,13 @@ static int wsrep_plugin_init(void *p) { - WSREP_INFO("wsrep_plugin_init()"); + WSREP_DEBUG("wsrep_plugin_init()"); return 0; } static int wsrep_plugin_deinit(void *p) { - WSREP_INFO("wsrep_plugin_deinit()"); + WSREP_DEBUG("wsrep_plugin_deinit()"); return 0; }