// // Path - a test sample to check that std::filesystem::path can be logged. // #include #include #if __has_include() #include namespace fs = std::filesystem; #else #include namespace fs = std::experimental::filesystem; #endif int main() { plog::init(plog::debug, "Path.txt"); PLOGI << "Current path: " << fs::current_path(); return 0; }