1
0
mirror of https://github.com/xmrig/xmrig.git synced 2025-12-10 09:02:45 -05:00

Improve some benchmark log messages.

This commit is contained in:
XMRig
2020-10-16 04:11:50 +07:00
parent a152d6be42
commit 5155139e9a
5 changed files with 45 additions and 9 deletions

View File

@@ -241,7 +241,9 @@ bool xmrig::Workers<T>::tick(uint64_t)
const char* color = checkData ? ((benchData == checkData) ? GREEN_BOLD_S : RED_BOLD_S) : BLACK_BOLD_S;
LOG_INFO("%s Benchmark finished in %.3f seconds, hash sum = %s%016" PRIX64 CLEAR, Tags::miner(), dt, color, benchData);
LOG_INFO("%s " WHITE_BOLD("benchmark finished in ") CYAN_BOLD("%.3f seconds") WHITE_BOLD_S " hash sum = " CLEAR "%s%016" PRIX64 CLEAR,
Tags::bench(), dt, color, benchData);
return false;
}
}