From 7503a29a5c57620802dd5ae12e183635f2d44715 Mon Sep 17 00:00:00 2001 From: Carl Pearson Date: Wed, 25 Sep 2019 09:34:45 -0500 Subject: [PATCH] improve reporting in detail/fs --- include/perfect/detail/fs.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/perfect/detail/fs.hpp b/include/perfect/detail/fs.hpp index 0495e87..dd40f7f 100644 --- a/include/perfect/detail/fs.hpp +++ b/include/perfect/detail/fs.hpp @@ -24,6 +24,7 @@ Result write_str(const std::string &path, const std::string &val) { std::cerr << "EPERM when writing to " << path << "\n"; return Result::NO_PERMISSION; case ENOENT: + std::cerr << "ENOENT when writing to " << path << "\n"; return Result::NOT_SUPPORTED; default: return Result::UNKNOWN;