mirror of
https://github.com/xmrig/xmrig.git
synced 2024-11-18 18:11:05 +00:00
Revert variant into summary output.
This commit is contained in:
parent
9c088eabc2
commit
de975adb8a
1 changed files with 4 additions and 4 deletions
|
@ -161,19 +161,19 @@ void xmrig::Pools::print() const
|
||||||
if (Log::colors) {
|
if (Log::colors) {
|
||||||
const int color = pool.isEnabled() ? (pool.isTLS() ? 32 : 36) : 31;
|
const int color = pool.isEnabled() ? (pool.isTLS() ? 32 : 36) : 31;
|
||||||
|
|
||||||
Log::i()->text(GREEN_BOLD(" * ") WHITE_BOLD("POOL #%-7zu") "\x1B[1;%dm%s\x1B[0m algo " WHITE_BOLD("%s"),
|
Log::i()->text(GREEN_BOLD(" * ") WHITE_BOLD("POOL #%-7zu") "\x1B[1;%dm%s\x1B[0m variant " WHITE_BOLD("%s"),
|
||||||
i,
|
i,
|
||||||
color,
|
color,
|
||||||
pool.url(),
|
pool.url(),
|
||||||
pool.algorithm().shortName()
|
pool.algorithm().variantName()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
Log::i()->text(" * POOL #%-7zu%s%s algo=%s %s",
|
Log::i()->text(" * POOL #%-7zu%s%s variant=%s %s",
|
||||||
i,
|
i,
|
||||||
pool.isEnabled() ? "" : "-",
|
pool.isEnabled() ? "" : "-",
|
||||||
pool.url(),
|
pool.url(),
|
||||||
pool.algorithm().shortName(),
|
pool.algorithm().variantName(),
|
||||||
pool.isTLS() ? "TLS" : ""
|
pool.isTLS() ? "TLS" : ""
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue