xref: /openbmc/phosphor-logging/paths.cpp (revision a06b4c6ba91b928aebc5b77b1b95ecef8639f498)
1 #include "config.h"
2 
3 #include "paths.hpp"
4 
5 namespace phosphor::logging::paths
6 {
7 auto error() -> std::filesystem::path
8 {
9     return std::filesystem::path(PERSIST_PATH_ROOT) / "errors";
10 }
11 auto extension() -> std::filesystem::path
12 {
13     return std::filesystem::path(PERSIST_PATH_ROOT) / "extensions";
14 }
15 } // namespace phosphor::logging::paths
16