Fix: relayd: missing space in trace creation logging statement
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Fri, 2 Dec 2022 22:11:00 +0000 (17:11 -0500)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 5 Jan 2023 23:53:49 +0000 (18:53 -0500)
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 <jeremie.galarneau@efficios.com>
Change-Id: I3881ddfc17556f2300f2140939c45d49e3b18d2b

src/bin/lttng-relayd/ctf-trace.c

index 5f77d676963f7fc97c519baf71df8627cb3f28ea..406c97889e0dab461e61d64e10b856f607ace4da 100644 (file)
@@ -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);
 
This page took 0.025854 seconds and 4 git commands to generate.