Commit 4d7d6386 authored by Peter Eisentraut's avatar Peter Eisentraut

Remove literal tabs from message strings

parent 420dcaae
...@@ -722,20 +722,20 @@ main(int argc, char **argv) ...@@ -722,20 +722,20 @@ main(int argc, char **argv)
if (debug) if (debug)
{ {
fprintf(stderr, "Trigger file : %s\n", triggerPath ? triggerPath : "<not set>"); fprintf(stderr, "Trigger file: %s\n", triggerPath ? triggerPath : "<not set>");
fprintf(stderr, "Waiting for WAL file : %s\n", nextWALFileName); fprintf(stderr, "Waiting for WAL file: %s\n", nextWALFileName);
fprintf(stderr, "WAL file path : %s\n", WALFilePath); fprintf(stderr, "WAL file path: %s\n", WALFilePath);
fprintf(stderr, "Restoring to : %s\n", xlogFilePath); fprintf(stderr, "Restoring to: %s\n", xlogFilePath);
fprintf(stderr, "Sleep interval : %d second%s\n", fprintf(stderr, "Sleep interval: %d second%s\n",
sleeptime, (sleeptime > 1 ? "s" : " ")); sleeptime, (sleeptime > 1 ? "s" : " "));
fprintf(stderr, "Max wait interval : %d %s\n", fprintf(stderr, "Max wait interval: %d %s\n",
maxwaittime, (maxwaittime > 0 ? "seconds" : "forever")); maxwaittime, (maxwaittime > 0 ? "seconds" : "forever"));
fprintf(stderr, "Command for restore : %s\n", restoreCommand); fprintf(stderr, "Command for restore: %s\n", restoreCommand);
fprintf(stderr, "Keep archive history : "); fprintf(stderr, "Keep archive history: ");
if (need_cleanup) if (need_cleanup)
fprintf(stderr, "%s and later\n", exclusiveCleanupFileName); fprintf(stderr, "%s and later\n", exclusiveCleanupFileName);
else else
fprintf(stderr, "No cleanup required\n"); fprintf(stderr, "no cleanup required\n");
fflush(stderr); fflush(stderr);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment