Skip to content

Commit

Permalink
fix GetLogPath return type to fs::path
Browse files Browse the repository at this point in the history
  • Loading branch information
sksat committed Feb 19, 2024
1 parent cd90248 commit bc77139
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/library/logger/logger.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class Logger {
* @fn GetLogPath
* @brief Return the path to the directory for log files
*/
inline std::string GetLogPath() const { return directory_path_; }
inline std::filesystem::path GetLogPath() const { return directory_path_; }

private:
std::ofstream csv_file_; //!< CSV file stream
Expand Down

0 comments on commit bc77139

Please sign in to comment.