From c32441f207194e480f4570df5560a9ffc2d207da Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 20 Mar 2025 20:20:02 +0100 Subject: [PATCH] Remove redundant quotes --- src/libutil/logging.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libutil/logging.cc b/src/libutil/logging.cc index de8df24b0..ddf90d7c5 100644 --- a/src/libutil/logging.cc +++ b/src/libutil/logging.cc @@ -323,7 +323,7 @@ Logger * makeJSONLogger(const std::filesystem::path & path, bool includeNixPrefi ? connect(path) : toDescriptor(open(path.c_str(), O_CREAT | O_APPEND | O_WRONLY, 0644)); if (!fd) - throw SysError("opening log file '%1%'", path); + throw SysError("opening log file %1%", path); return new JSONFileLogger(std::move(fd), includeNixPrefix); }