Rename "tracing session" -> "recording session"
[lttng-tools.git] / src / bin / lttng / commands / list.c
index 8151886082857a383f93e3d8d9ae72b69eae7bd4..4f4fcb5ef09c898157bbaa25a86fd88aea8de9b7 100644 (file)
@@ -1244,7 +1244,7 @@ static int list_events(const char *channel_name)
                }
        } else {
                /* Pretty print */
-               MSG("\n%sEvent rules:", indent4);
+               MSG("\n%sRecording event rules:", indent4);
                if (count == 0) {
                        MSG("%sNone\n", indent6);
                        goto end;
@@ -2128,19 +2128,19 @@ static int list_sessions(const char *session_name)
        } else {
                /* Pretty print */
                if (count == 0) {
-                       MSG("Currently no available tracing session");
+                       MSG("Currently no available recording session");
                        goto end;
                }
 
                if (session_name == NULL) {
-                       MSG("Available tracing sessions:");
+                       MSG("Available recording sessions:");
                }
 
                for (i = 0; i < count; i++) {
                        if (session_name != NULL) {
                                if (strncmp(sessions[i].name, session_name, NAME_MAX) == 0) {
                                        session_found = 1;
-                                       MSG("Tracing session %s: [%s%s]", session_name,
+                                       MSG("Recording session %s: [%s%s]", session_name,
                                                        active_string(sessions[i].enabled),
                                                        snapshot_string(sessions[i].snapshot_mode));
                                        if (*sessions[i].path) {
This page took 0.023814 seconds and 4 git commands to generate.