From e6412bf7410f50117b81ee2fdc643c3797e7e0e8 Mon Sep 17 00:00:00 2001 From: Jean Flach <Crunsher@users.noreply.github.com> Date: Mon, 15 Jan 2018 15:31:53 +0100 Subject: [PATCH] Improve console help text Split continue and quit/exit commands --- lib/cli/consolecommand.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/cli/consolecommand.cpp b/lib/cli/consolecommand.cpp index ade7ae43c..bbee81727 100644 --- a/lib/cli/consolecommand.cpp +++ b/lib/cli/consolecommand.cpp @@ -390,8 +390,9 @@ incomplete: else if (line == "$help") std::cout << "Welcome to the Icinga 2 debug console.\n" "Usable commands:\n" - " $continue, $quit, $exit Quit the console\n" - " $help Print this help\n\n" + " $continue Continue running Icinga 2 (script debugger).\n" + " $quit, $exit Stop debugging and quit the console.\n" + " $help Print this help.\n\n" "For more information on how to use this console, please consult the documentation at https://icinga.com/docs\n"; else std::cout << "Unknown debugger command: " << line << "\n";