From 96d0b9481a06d5b1839a06eb7d949f8f1e14bdb2 Mon Sep 17 00:00:00 2001 From: Balazs Scheidler <balazs.scheidler@axoflow.com> Date: Sun, 27 Oct 2024 00:16:29 +0200 Subject: [PATCH] debugger: make the help output a bit more consistent Signed-off-by: Balazs Scheidler <balazs.scheidler@axoflow.com> --- lib/debugger/cmd-help.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/debugger/cmd-help.c b/lib/debugger/cmd-help.c index f08252c38..78908515f 100644 --- a/lib/debugger/cmd-help.c +++ b/lib/debugger/cmd-help.c @@ -35,9 +35,9 @@ _cmd_help(Debugger *self, gint argc, gchar *argv[]) " trace or t Trace this message along the configuration\n" " info Display information about the current execution state\n" " list or l Display source code at the current location\n" - " print, p Print the current log message\n" - " drop, d Drop the current message\n" - " quit, q Tell syslog-ng to exit\n" + " print or p Print the current log message using a template\n" + " drop or d Drop the current message\n" + " quit or q Tell syslog-ng to exit\n" ); return TRUE; }