Skip to content
Permalink
Browse files
downgrade wsrep_plugin_init()/wsrep_plugin_deinit log messages
from info to debug
  • Loading branch information
vuvova committed Jan 28, 2019
1 parent 4007eab commit 41a9a67
Showing 1 changed file with 2 additions and 2 deletions.
@@ -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;
}

0 comments on commit 41a9a67

Please sign in to comment.