From a533f106fd31f74edc7aa60a56ee94150a2a01b0 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Thu, 11 Oct 2012 00:08:45 +1100 Subject: [PATCH] Update reconnect message to show whole address including port. --- util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.c b/util.c index e12a9f78..316410de 100644 --- a/util.c +++ b/util.c @@ -1117,7 +1117,7 @@ static bool parse_reconnect(struct pool *pool, json_t *val) pool->stratum_url = pool->sockaddr_url; - applog(LOG_NOTICE, "Reconnect requested from pool %d to %s", pool->pool_no, pool->stratum_url); + applog(LOG_NOTICE, "Reconnect requested from pool %d to %s", pool->pool_no, address); if (!initiate_stratum(pool) || !auth_stratum(pool)) return false;