| 32 | } |
| 33 | |
| 34 | void consoleMultiLog(const std::vector<std::string>& logs) |
| 35 | { |
| 36 | if (!logs.empty()) |
| 37 | { |
| 38 | std::string log; |
| 39 | for (std::string l : logs) |
| 40 | { |
| 41 | log.append(fmt::format("[REC]: {}\n", l)); |
| 42 | } |
| 43 | recordingConLog(log); |
| 44 | } |
| 45 | } |
| 46 | } // namespace InputRecording |
no test coverage detected