diff options
-rw-r--r-- | executor.cpp | 6 | ||||
-rw-r--r-- | executor.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/executor.cpp b/executor.cpp index 44fcc53..61c58ef 100644 --- a/executor.cpp +++ b/executor.cpp @@ -580,7 +580,7 @@ void executor::result_report(std::string& out) out.append("\nError details:\n"); if(ln > 1) { - out.append("| Count | Error text | Last seen |\n"); + out.append("| Count | Error text | Last seen |\n"); for(size_t i=1; i < ln; i++) { snprintf(num, sizeof(num), "| %5llu | %-32.32s | %s |\n", int_port(vMineResults[i].count), @@ -621,10 +621,10 @@ void executor::connection_report(std::string& out) size_t ln = vSocketLog.size(); if(ln > 0) { - out.append("| Date | Error text |\n"); + out.append("| Date | Error text |\n"); for(size_t i=0; i < ln; i++) { - snprintf(num, sizeof(num), "| %s | %-64.64s |\n", + snprintf(num, sizeof(num), "| %s | %-54.54s |\n", time_format(date, sizeof(date), vSocketLog[i].time), vSocketLog[i].msg.c_str()); out.append(num); } @@ -146,7 +146,7 @@ private: //Those stats are reset if we disconnect inline void reset_stats() { - iPoolCallTimes.empty(); + iPoolCallTimes.clear(); tPoolConnTime = std::chrono::system_clock::now(); iPoolHashes = 0; iPoolDiff = 0; |