Silence log messages on autoconnect
This commit is contained in:
parent
39b23f7a11
commit
4401c645ab
1 changed files with 2 additions and 4 deletions
|
|
@ -217,12 +217,10 @@ static void periodic_handler(void *data) {
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!count) {
|
if(!count)
|
||||||
logger(DEBUG_ALWAYS, LOG_INFO, "No more nodes available for autoconnect!");
|
|
||||||
goto end;
|
goto end;
|
||||||
}
|
|
||||||
|
|
||||||
logger(DEBUG_ALWAYS, LOG_INFO, "%d active connections - autoconnecting to one of %d available nodes",
|
logger(DEBUG_STATUS, LOG_INFO, "%d active connections - autoconnecting to one of %d available nodes",
|
||||||
nc, count);
|
nc, count);
|
||||||
|
|
||||||
int r = rand() % count;
|
int r = rand() % count;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue