Commit 41a9a677 authored by Sergei Golubchik's avatar Sergei Golubchik

downgrade wsrep_plugin_init()/wsrep_plugin_deinit log messages

from info to debug
parent 4007eaba
...@@ -20,13 +20,13 @@ ...@@ -20,13 +20,13 @@
static int wsrep_plugin_init(void *p) static int wsrep_plugin_init(void *p)
{ {
WSREP_INFO("wsrep_plugin_init()"); WSREP_DEBUG("wsrep_plugin_init()");
return 0; return 0;
} }
static int wsrep_plugin_deinit(void *p) static int wsrep_plugin_deinit(void *p)
{ {
WSREP_INFO("wsrep_plugin_deinit()"); WSREP_DEBUG("wsrep_plugin_deinit()");
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment