From: Jérémie Galarneau Date: Thu, 14 Mar 2024 19:01:54 +0000 (-0400) Subject: Clean-up: lock-file: quote lock file path in debug logging message X-Git-Url: http://git.lttng.org./?a=commitdiff_plain;h=86b69e9cdbe9929c0c71e0c2024bb0f269b6b446;p=lttng-tools.git Clean-up: lock-file: quote lock file path in debug logging message Signed-off-by: Jérémie Galarneau Change-Id: Icf2a15768414cec93a5fcfc8d8dfeec463e550a8 --- 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 +}