Skip to content

Commit 17e3b3e

Browse files
author
Vivien Clauzon
committed
change log level for self play summary
1 parent c044926 commit 17e3b3e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Source/cli.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -270,9 +270,9 @@ bool cliManagement(const std::string & firstArg, int argc, char** argv) {
270270
nbPos += nbPosLoc;
271271
const auto ms = getTimeDiff(startTime);
272272
++nbGames;
273-
Logging::LogIt(Logging::logInfoPrio) << "Nb games : " << nbGames << ", Nb Pos : " << nbPos << ", elapsed s : " << ms/1000;
274-
Logging::LogIt(Logging::logInfoPrio) << "Game speed : " << static_cast<double>(nbGames) / (static_cast<double>(ms) / 1000 / 60) << " games/min";
275-
Logging::LogIt(Logging::logInfoPrio) << "Pos speed : " << static_cast<double>(nbPos) / (static_cast<double>(ms) / 1000) << " pos/s";
273+
Logging::LogIt(Logging::logError) << "Nb games : " << nbGames << ", Nb Pos : " << nbPos << ", elapsed s : " << ms/1000;
274+
Logging::LogIt(Logging::logError) << "Game speed : " << static_cast<double>(nbGames) / (static_cast<double>(ms) / 1000 / 60) << " games/min";
275+
Logging::LogIt(Logging::logError) << "Pos speed : " << static_cast<double>(nbPos) / (static_cast<double>(ms) / 1000) << " pos/s";
276276
}
277277
return true;
278278
}

0 commit comments

Comments
 (0)