| 39 | const std::string& pretty_function, |
| 40 | const std::string& key, |
| 41 | const std::string& val) { |
| 42 | const std::string result_file_path = CMAKE_SOURCE_DIR + std::string("/log/log.csv"); |
| 43 | |
| 44 | static std::ofstream FILE {result_file_path}; |
| 45 | static auto TABLE = OutputFactory::CreateCSV(FILE); |
| 46 | |
| 47 | TABLE->Add(prettify_function_name(pretty_function)); |
| 48 | TABLE->Add(key); |
| 49 | TABLE->Add(val); |
no test coverage detected