Commit d16e290a authored by Robert Haas's avatar Robert Haas

Emit a LOG message when pausing at the recovery target.

Fujii Masao
parent 1c3b434a
...@@ -6482,6 +6482,9 @@ StartupXLOG(void) ...@@ -6482,6 +6482,9 @@ StartupXLOG(void)
{ {
if (recoveryPauseAtTarget) if (recoveryPauseAtTarget)
{ {
ereport(LOG,
(errmsg("recovery has paused"),
errhint("Execute pg_xlog_replay_resume() to continue.")));
SetRecoveryPause(true); SetRecoveryPause(true);
recoveryPausesHere(); recoveryPausesHere();
} }
......
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