1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

downgrade wsrep_plugin_init()/wsrep_plugin_deinit log messages

from info to debug
This commit is contained in:
Sergei Golubchik
2019-01-27 12:18:39 +01:00
parent 4007eaba91
commit 41a9a677eb

View File

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