]> granicus.if.org Git - icinga2/commitdiff
Improve console help text 5979/head
authorJean Flach <Crunsher@users.noreply.github.com>
Mon, 15 Jan 2018 14:31:53 +0000 (15:31 +0100)
committerGitHub <noreply@github.com>
Mon, 15 Jan 2018 14:31:53 +0000 (15:31 +0100)
Split continue and quit/exit commands

lib/cli/consolecommand.cpp

index ade7ae43cd04460245aee03e751bd39a207c0a2d..bbee81727a08bdd196ac4d77dc7ff957ee913225 100644 (file)
@@ -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";