From 77207eaaae32922462fcfa788f39176a405b1437 Mon Sep 17 00:00:00 2001 From: XMRig Date: Mon, 9 Apr 2018 20:38:02 +0700 Subject: [PATCH] Fix build with APP_DEBUG. --- src/Summary.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Summary.cpp b/src/Summary.cpp index 7e341ce0..56f3f522 100644 --- a/src/Summary.cpp +++ b/src/Summary.cpp @@ -123,7 +123,7 @@ static void print_pools(xmrig::Config *config) # ifdef APP_DEBUG for (size_t i = 0; i < pools.size(); ++i) { - Log::i()->text("%s:%d, user: %s, pass: %s, ka: %d, nicehash: %d", pools[i]->host(), pools[i]->port(), pools[i]->user(), pools[i]->password(), pools[i]->isKeepAlive(), pools[i]->isNicehash()); + Log::i()->text("%s:%d, user: %s, pass: %s, ka: %d, nicehash: %d", pools[i]->host(), pools[i]->port(), pools[i]->user(), pools[i]->password(), pools[i]->keepAlive(), pools[i]->isNicehash()); } # endif }