mirror of
https://github.com/postgres/postgres.git
synced 2025-05-03 22:24:49 +03:00
Message style improvements
This commit is contained in:
parent
5526baf549
commit
48d6d5a2af
@ -1020,12 +1020,11 @@ prepareToTerminate(PGconn *conn, XLogRecPtr endpos, bool keepalive, XLogRecPtr l
|
||||
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);
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -235,7 +235,7 @@ scan_file(const char *fn, BlockNumber segmentno)
|
||||
/* 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);
|
||||
}
|
||||
@ -469,7 +469,7 @@ main(int argc, char *argv[])
|
||||
/* 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);
|
||||
|
@ -176,7 +176,7 @@ _connectDB(ArchiveHandle *AH, const char *reqdb, const char *requser)
|
||||
newConn = PQconnectdbParams(keywords, values, true);
|
||||
|
||||
if (!newConn)
|
||||
fatal("failed to reconnect to database");
|
||||
fatal("could not reconnect to database");
|
||||
|
||||
if (PQstatus(newConn) == CONNECTION_BAD)
|
||||
{
|
||||
@ -287,7 +287,7 @@ ConnectDatabase(Archive *AHX,
|
||||
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) &&
|
||||
|
@ -482,7 +482,7 @@ main(int argc, char *argv[])
|
||||
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);
|
||||
}
|
||||
@ -1492,11 +1492,11 @@ dumpDatabases(PGconn *conn)
|
||||
/* 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);
|
||||
|
||||
|
@ -304,7 +304,7 @@ usage(void)
|
||||
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"));
|
||||
|
Loading…
x
Reference in New Issue
Block a user