From 25840cfec9adab8dfc89973f99d18d493841b6ed Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Wed, 29 Apr 2015 19:50:05 +1000 Subject: [PATCH] Demote client flag message to info level --- src/stratifier.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/stratifier.c b/src/stratifier.c index b0a30410..53e1df26 100644 --- a/src/stratifier.c +++ b/src/stratifier.c @@ -1410,8 +1410,8 @@ static void reconnect_clients(sdata_t *sdata) ck_runlock(&sdata->instance_lock); if (reconnects) { - LOGNOTICE("%d clients flagged for reconnect to global proxy %d", - reconnects, proxy->id); + LOGINFO("%d clients flagged for reconnect to global proxy %d", + reconnects, proxy->id); } if (headroom < 0) generator_recruit(sdata->ckp, proxy->id, -headroom); @@ -1649,8 +1649,8 @@ static void check_userproxies(sdata_t *sdata, const int userid) ck_runlock(&sdata->instance_lock); if (reconnects) { - LOGNOTICE("%d clients flagged for reconnect to user %d proxies", - reconnects, userid); + LOGINFO("%d clients flagged for reconnect to user %d proxies", + reconnects, userid); } if (headroom < 0) recruit_best_userproxy(sdata, userid, -headroom);