| 10 | using namespace Util; |
| 11 | |
| 12 | std::vector<std::string> Util::getFilesInDirectory(const std::string &dirPath) { |
| 13 | std::vector<std::string> filepaths; |
| 14 | for (const auto &entry : std::filesystem::directory_iterator(dirPath)) { |
| 15 | filepaths.emplace_back(entry.path().string()); |
| 16 | } |
| 17 | return filepaths; |
| 18 | } |
| 19 | |
| 20 | void Logger::log(Severity severity, const char *msg) noexcept { |
| 21 | // Would advise using a proper logging utility such as |
nothing calls this directly
no outgoing calls
no test coverage detected