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