From 7ba6fb3ac5387b2ef6f7240ff3e3b85511ebee20 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Tue, 19 Dec 2023 23:38:29 -0600 Subject: [PATCH] [ox/fs] Fix log message --- deps/ox/src/ox/fs/filesystem/passthroughfs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/ox/src/ox/fs/filesystem/passthroughfs.cpp b/deps/ox/src/ox/fs/filesystem/passthroughfs.cpp index 33feba23..9893c03e 100644 --- a/deps/ox/src/ox/fs/filesystem/passthroughfs.cpp +++ b/deps/ox/src/ox/fs/filesystem/passthroughfs.cpp @@ -101,7 +101,7 @@ Result PassThroughFS::statPath(CRStringView path) const noexcept { oxTracef("ox.fs.PassThroughFS.statInode", "{} {}", ec.message(), path); const uint64_t size = type == FileType::Directory ? 0 : std::filesystem::file_size(p, ec); oxTracef("ox.fs.PassThroughFS.statInode", "{} {}", ec.message(), path); - oxTracef("ox.fs.PassThroughFS.statInode::size", "{} {}", path, size); + oxTracef("ox.fs.PassThroughFS.statInode.size", "{} {}", path, size); oxReturnError(OxError(static_cast(ec.value()), "PassThroughFS: stat failed")); return FileStat{0, 0, size, type}; }