From: Alan T. DeKok Date: Wed, 15 Jul 2015 13:41:11 +0000 (-0400) Subject: Clarify message X-Git-Tag: release_3_0_10~334 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f18ff310a37800a24cf119b514124fa59ea68438;p=thirdparty%2Ffreeradius-server.git Clarify message --- diff --git a/src/main/connection.c b/src/main/connection.c index e48a1a34311..f4e5fcbd5e3 100644 --- a/src/main/connection.c +++ b/src/main/connection.c @@ -716,7 +716,8 @@ static int fr_connection_pool_check(fr_connection_pool_t *pool) * a connection. Avoids spurious log messages. */ if (spawn) { - INFO("%s: %i of %u connections in use. Need more spares", pool->log_prefix, pool->active, pool->num); + INFO("%s: Need %i more connections to reach %i spares", + pool->log_prefix, spawn, pool->spare); pthread_mutex_unlock(&pool->mutex); fr_connection_spawn(pool, now, false); /* ignore return code */ pthread_mutex_lock(&pool->mutex);