From 86b69e9cdbe9929c0c71e0c2024bb0f269b6b446 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Thu, 14 Mar 2024 15:01:54 -0400 Subject: [PATCH] Clean-up: lock-file: quote lock file path in debug logging message MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérémie Galarneau Change-Id: Icf2a15768414cec93a5fcfc8d8dfeec463e550a8 --- src/common/lockfile.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/lockfile.cpp b/src/common/lockfile.cpp index aeafd85cd..e11e718c1 100644 --- a/src/common/lockfile.cpp +++ b/src/common/lockfile.cpp @@ -96,8 +96,8 @@ int utils_create_lock_file(const char *filepath) goto error; } - DBG_FMT("Acquired lock file: file_path={}", filepath); + DBG_FMT("Acquired lock file: file_path=`{}`", filepath); error: return fd; -} \ No newline at end of file +} -- 2.34.1