From: Jérémie Galarneau Date: Fri, 2 Dec 2022 22:11:00 +0000 (-0500) Subject: Fix: relayd: missing space in trace creation logging statement X-Git-Tag: v2.13.9~2 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=8aec5b83b24d5bf585410bcf83592c3147337224 Fix: relayd: missing space in trace creation logging statement 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 --- 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);