From 8aec5b83b24d5bf585410bcf83592c3147337224 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.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/lttng-relayd/ctf-trace.c b/src/bin/lttng-relayd/ctf-trace.c index 5f77d6769..406c97889 100644 --- a/src/bin/lttng-relayd/ctf-trace.c +++ b/src/bin/lttng-relayd/ctf-trace.c @@ -110,7 +110,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