else
printf("%dkB\n", n_buffers * (BLCKSZ / 1024));
- printf(_("selecting default timezone ... "));
+ printf(_("selecting default time zone ... "));
fflush(stdout);
default_timezone = select_default_timezone(share_path);
printf("%s\n", default_timezone ? default_timezone : "GMT");
if (verbose)
{
if (keepalive)
- pg_log_info("endpos %X/%X reached by keepalive",
+ pg_log_info("end position %X/%X reached by keepalive",
(uint32) (endpos >> 32), (uint32) endpos);
else
- pg_log_info("endpos %X/%X reached by record at %X/%X",
+ pg_log_info("end position %X/%X reached by WAL record at %X/%X",
(uint32) (endpos >> 32), (uint32) (endpos),
(uint32) (lsn >> 32), (uint32) lsn);
-
}
}
/* Write block with checksum */
if (write(f, buf.data, BLCKSZ) != BLCKSZ)
{
- pg_log_error("could not update checksum of block %u in file \"%s\": %m",
+ pg_log_error("could not write block %u in file \"%s\": %m",
blockno, fn);
exit(1);
}
/* filenode checking only works in --check mode */
if (mode != PG_MODE_CHECK && only_filenode)
{
- pg_log_error("--filenode option only possible with --check");
+ pg_log_error("option -f/--filenode can only be used with --check");
fprintf(stderr, _("Try \"%s --help\" for more information.\n"),
progname);
exit(1);
newConn = PQconnectdbParams(keywords, values, true);
if (!newConn)
- fatal("failed to reconnect to database");
+ fatal("could not reconnect to database");
if (PQstatus(newConn) == CONNECTION_BAD)
{
AH->connection = PQconnectdbParams(keywords, values, true);
if (!AH->connection)
- fatal("failed to connect to database");
+ fatal("could not connect to database");
if (PQstatus(AH->connection) == CONNECTION_BAD &&
PQconnectionNeedsPassword(AH->connection) &&
OPF = fopen(filename, PG_BINARY_W);
if (!OPF)
{
- pg_log_error("could not open the output file \"%s\": %m",
+ pg_log_error("could not open output file \"%s\": %m",
filename);
exit_nicely(1);
}
/* Skip any explicitly excluded database */
if (simple_string_list_member(&database_exclude_names, dbname))
{
- pg_log_info("excluding database \"%s\"...", dbname);
+ pg_log_info("excluding database \"%s\"", dbname);
continue;
}
- pg_log_info("dumping database \"%s\"...", dbname);
+ pg_log_info("dumping database \"%s\"", dbname);
fprintf(OPF, "--\n-- Database \"%s\" dump\n--\n\n", dbname);
printf(_(" -p, --old-port=PORT old cluster port number (default %d)\n"), old_cluster.port);
printf(_(" -P, --new-port=PORT new cluster port number (default %d)\n"), new_cluster.port);
printf(_(" -r, --retain retain SQL and log files after success\n"));
- printf(_(" -s, --socketdir=DIR socket directory to use (default CWD)\n"));
+ printf(_(" -s, --socketdir=DIR socket directory to use (default current dir.)\n"));
printf(_(" -U, --username=NAME cluster superuser (default \"%s\")\n"), os_info.user);
printf(_(" -v, --verbose enable verbose internal logging\n"));
printf(_(" -V, --version display version information, then exit\n"));