| 14 | |
| 15 | std::string linkify(const std::string& link) { |
| 16 | std::stringstream ss; |
| 17 | ss << "[link]" |
| 18 | << "(" << link << ")"; |
| 19 | return ss.str(); |
| 20 | } |
| 21 | |
| 22 | template <typename T> |
| 23 | void log(const T& obj) { |
| 24 | std::string result_file_path = CMAKE_SOURCE_DIR + std::string("/log/log.csv"); |
| 25 |