Small corrections to message output targets in pg_ctl
authorPeter Eisentraut
Fri, 19 Feb 2010 14:12:19 +0000 (14:12 +0000)
committerPeter Eisentraut
Fri, 19 Feb 2010 14:12:19 +0000 (14:12 +0000)
- The message "server stopped" should be affected by the -s option, just
  like "server started" already was.

- The message "could not start server" should consistently go to stderr.

src/bin/pg_ctl/pg_ctl.c

index a24e5dc32758d80cfdfa1ac62668660a612d3f9d..23d32e64697e6aaaac4e4127c4bdbfd9b44decf7 100644 (file)
@@ -4,7 +4,7 @@
  *
  * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
  *
- * $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.118 2010/01/02 16:57:58 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.119 2010/02/19 14:12:19 petere Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -748,7 +748,9 @@ do_start(void)
 
        if (test_postmaster_connection(false) == false)
        {
-           printf(_("could not start server\n"));
+           write_stderr(_("%s: could not start server\n"
+                          "Examine the log output.\n"),
+                        progname);
            exit(1);
        }
        else
@@ -828,7 +830,7 @@ do_stop(void)
        }
        print_msg(_(" done\n"));
 
-       printf(_("server stopped\n"));
+       print_msg(_("server stopped\n"));
    }
 }
 
@@ -907,7 +909,7 @@ do_restart(void)
        }
 
        print_msg(_(" done\n"));
-       printf(_("server stopped\n"));
+       print_msg(_("server stopped\n"));
    }
    else
    {