From 9e0e2ff92a904f175d4e4da4f3a7dc5056a8050a Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Fri, 2 Dec 2022 17:11:00 -0500 Subject: [PATCH] Fix: relayd: missing space in trace creation logging statement MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit A missing space results in hard to read logging statements when a ctf_trace is created: [...] Created ctf_trace 15of session "hello" [...] Signed-off-by: Jérémie Galarneau Change-Id: I3881ddfc17556f2300f2140939c45d49e3b18d2b --- src/bin/lttng-relayd/ctf-trace.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/lttng-relayd/ctf-trace.cpp b/src/bin/lttng-relayd/ctf-trace.cpp index ba4a29092..0ecb72f45 100644 --- a/src/bin/lttng-relayd/ctf-trace.cpp +++ b/src/bin/lttng-relayd/ctf-trace.cpp @@ -126,7 +126,7 @@ static struct ctf_trace *ctf_trace_create(struct relay_session *session, pthread_mutex_init(&trace->stream_list_lock, NULL); lttng_ht_add_str(session->ctf_traces_ht, &trace->node); - DBG("Created ctf_trace %" PRIu64 "of session \"%s\" from host \"%s\" with path: %s", + DBG("Created ctf_trace %" PRIu64 " of session \"%s\" from host \"%s\" with path: %s", trace->id, session->session_name, session->hostname, subpath); -- 2.34.1