pg_usleep(100000); /* us */
if (loops == 30)
#ifndef FRONTEND
- elog(LOG, "could not rename \"%s\" to \"%s\", continuing to try",
+ elog(LOG, "could not rename file \"%s\" to \"%s\", continuing to try",
from, to);
#else
- fprintf(stderr, _("could not rename \"%s\" to \"%s\", continuing to try\n"),
+ fprintf(stderr, _("could not rename file \"%s\" to \"%s\", continuing to try\n"),
from, to);
#endif
loops++;
if (loops > 30)
#ifndef FRONTEND
- elog(LOG, "completed rename of \"%s\" to \"%s\"", from, to);
+ elog(LOG, "completed rename of file \"%s\" to \"%s\"", from, to);
#else
- fprintf(stderr, _("completed rename of \"%s\" to \"%s\"\n"), from, to);
+ fprintf(stderr, _("completed rename of file \"%s\" to \"%s\"\n"), from, to);
#endif
return 0;
}
pg_usleep(100000); /* us */
if (loops == 30)
#ifndef FRONTEND
- elog(LOG, "could not unlink \"%s\", continuing to try",
+ elog(LOG, "could not remove file \"%s\", continuing to try",
path);
#else
- fprintf(stderr, _("could not unlink \"%s\", continuing to try\n"),
+ fprintf(stderr, _("could not remove file \"%s\", continuing to try\n"),
path);
#endif
loops++;
if (loops > 30)
#ifndef FRONTEND
- elog(LOG, "completed unlink of \"%s\"", path);
+ elog(LOG, "completed removal of file \"%s\"", path);
#else
- fprintf(stderr, _("completed unlink of \"%s\"\n"), path);
+ fprintf(stderr, _("completed removal of file \"%s\"\n"), path);
#endif
return 0;
}