From d6230e68ef6bcfcf9d53a02c5a418ad4098735c3 Mon Sep 17 00:00:00 2001 From: Markus Makela Date: Tue, 3 Nov 2015 10:09:37 +0200 Subject: [PATCH] Moved warnings about session command history limits to message log. --- server/modules/routing/readwritesplit/readwritesplit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/modules/routing/readwritesplit/readwritesplit.c b/server/modules/routing/readwritesplit/readwritesplit.c index 15ad5ca42..dfbc6a01d 100644 --- a/server/modules/routing/readwritesplit/readwritesplit.c +++ b/server/modules/routing/readwritesplit/readwritesplit.c @@ -4544,7 +4544,7 @@ static bool route_session_write( if (router_cli_ses->rses_config.rw_max_sescmd_history_size > 0 && router_cli_ses->rses_nsescmd >= router_cli_ses->rses_config.rw_max_sescmd_history_size) { - skygw_log_write(LE, "Warning: Router session exceeded session command history limit. " + skygw_log_write(LM, "Warning: Router session exceeded session command history limit. " "Slave recovery is disabled and only slave servers with consistent session state are used " "for the duration of the session."); router_cli_ses->rses_config.rw_disable_sescmd_hist = true;