Update more calls to add_prefix_cmd
[deliverable/binutils-gdb.git] / gdb / cli / cli-logging.c
index d7c1b779bfe465a42761238d45ead9dcc8b59406..a58cdcec8766a831ef1d138492e9715903488e56 100644 (file)
@@ -165,55 +165,18 @@ set_logging_off (const char *args, int from_tty)
   saved_filename = NULL;
 }
 
-static void
-set_logging_command (const char *args, int from_tty)
-{
-  printf_unfiltered (_("\"set logging\" lets you log output to a file.\n"
-                      "Usage: set logging on [FILENAME]\n"
-                      "       set logging off\n"
-                      "       set logging file FILENAME\n"
-                      "       set logging overwrite [on|off]\n"
-                      "       set logging redirect [on|off]\n"));
-}
-
-static void
-show_logging_command (const char *args, int from_tty)
-{
-  if (saved_filename)
-    printf_unfiltered (_("Currently logging to \"%s\".\n"), saved_filename);
-  if (saved_filename == NULL
-      || strcmp (logging_filename, saved_filename) != 0)
-    printf_unfiltered (_("Future logs will be written to %s.\n"),
-                      logging_filename);
-
-  if (logging_overwrite)
-    printf_unfiltered (_("Logs will overwrite the log file.\n"));
-  else
-    printf_unfiltered (_("Logs will be appended to the log file.\n"));
-
-  if (logging_redirect)
-    printf_unfiltered (_("Output will be sent only to the log file.\n"));
-  else
-    printf_unfiltered (_("Output will be logged and displayed.\n"));
-
-  if (debug_redirect)
-    printf_unfiltered (_("Debug output will be sent only to the log file.\n"));
-  else
-    printf_unfiltered (_("Debug output will be logged and displayed.\n"));
-}
-
 void _initialize_cli_logging ();
 void
 _initialize_cli_logging ()
 {
   static struct cmd_list_element *set_logging_cmdlist, *show_logging_cmdlist;
 
-  add_prefix_cmd ("logging", class_support, set_logging_command,
-                 _("Set logging options."), &set_logging_cmdlist,
-                 "set logging ", 0, &setlist);
-  add_prefix_cmd ("logging", class_support, show_logging_command,
-                 _("Show logging options."), &show_logging_cmdlist,
-                 "show logging ", 0, &showlist);
+  add_basic_prefix_cmd ("logging", class_support,
+                       _("Set logging options."), &set_logging_cmdlist,
+                       "set logging ", 0, &setlist);
+  add_show_prefix_cmd ("logging", class_support,
+                      _("Show logging options."), &show_logging_cmdlist,
+                      "show logging ", 0, &showlist);
   add_setshow_boolean_cmd ("overwrite", class_support, &logging_overwrite, _("\
 Set whether logging overwrites or appends to the log file."), _("\
 Show whether logging overwrites or appends to the log file."), _("\
This page took 0.02425 seconds and 4 git commands to generate.