blob: cf9c7b7ad94901b6694eed386131b0206d060155 [file] [log] [blame]
Patrick Williamsfa2d9622024-09-30 16:25:43 -04001#include "config.h"
2
3#include "paths.hpp"
4
5namespace phosphor::logging::paths
6{
7auto error() -> std::filesystem::path
8{
9 return std::filesystem::path(PERSIST_PATH_ROOT) / "errors";
10}
11auto extension() -> std::filesystem::path
12{
13 return std::filesystem::path(PERSIST_PATH_ROOT) / "extensions";
14}
15} // namespace phosphor::logging::paths