Print the gamelog data to the console. */
| 308 | |
| 309 | /** Print the gamelog data to the console. */ |
| 310 | void Gamelog::PrintConsole() |
| 311 | { |
| 312 | this->Print([](const std::string &s) { |
| 313 | IConsolePrint(CC_WARNING, s); |
| 314 | }); |
| 315 | } |
| 316 | |
| 317 | /** |
| 318 | * Prints gamelog to debug output. Code is executed even when |
no test coverage detected