| 369 | */ |
| 370 | template <typename... T> |
| 371 | void log(const T&... items) |
| 372 | { |
| 373 | if (use_stdout) |
| 374 | sync_cout.print(items...); |
| 375 | if (use_log) |
| 376 | sync_log.print(items...); |
| 377 | } |
| 378 | |
| 379 | /** |
| 380 | * @brief Print any number of items to the standard output and/or the log file, followed by a newline character. |
no test coverage detected