Fix typos in some logging messages

This commit is contained in:
Greg Smith
2011-02-24 19:05:03 -05:00
parent 459f14b594
commit bf0bbd747b
2 changed files with 3 additions and 3 deletions

View File

@@ -238,8 +238,8 @@ getMasterConnection(PGconn *standby_conn, int id, char *cluster,
}
/* find all nodes belonging to this cluster */
log_info(_("finding node lost for cluster '%s'\n"),
master_conninfo);
log_info(_("finding node list for cluster '%s'\n"),
cluster);
sqlquery_snprintf(sqlquery, "SELECT * FROM %s.repl_nodes "
" WHERE cluster = '%s' and id <> %d",

View File

@@ -200,7 +200,7 @@ main(int argc, char **argv)
checkNodeConfiguration(local_options.conninfo);
if (myLocalMode == STANDBY_MODE)
{
log_info(_("%s Starting continuous standby node monitoring'\n"), progname);
log_info(_("%s Starting continuous standby node monitoring\n"), progname);
MonitorCheck();
}
else