diff options
| author | Stefan Boberg <[email protected]> | 2021-11-02 12:31:58 +0100 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-11-02 12:31:58 +0100 |
| commit | 5bb2fce6904b88f73f54efe56c9a71a35b35172d (patch) | |
| tree | 228179835af24724cf86ab0b16b755f0b475328c /zencore/filesystem.cpp | |
| parent | gc: implemented CID remapping for GC (diff) | |
| download | zen-5bb2fce6904b88f73f54efe56c9a71a35b35172d.tar.xz zen-5bb2fce6904b88f73f54efe56c9a71a35b35172d.zip | |
fs: minor logging cleanup
Diffstat (limited to 'zencore/filesystem.cpp')
| -rw-r--r-- | zencore/filesystem.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/zencore/filesystem.cpp b/zencore/filesystem.cpp index a642e2cf6..bcbb36c73 100644 --- a/zencore/filesystem.cpp +++ b/zencore/filesystem.cpp @@ -701,9 +701,7 @@ FileSystemTraversal::TraverseFileSystem(const std::filesystem::path& RootDir, Tr } else if (DirInfo->FileAttributes & FILE_ATTRIBUTE_DEVICE) { - ZEN_WARN("encountered device node during file system traversal: {} found in {}", - WideToUtf8(FileName), - WideToUtf8(RootDir.c_str())); + ZEN_WARN("encountered device node during file system traversal: '{}' found in '{}'", WideToUtf8(FileName), RootDir); } else { |