Skip to content
Snippets Groups Projects
Commit 03d03c6a authored by Danny Auble's avatar Danny Auble
Browse files

made error messages debug4 messages (since they aren't really errors)

parent 314b4164
No related branches found
No related tags found
No related merge requests found
......@@ -827,10 +827,10 @@ extern int archive_write_file(Buf buffer, char *cluster_name,
else { /* file shuffle */
(void) unlink(old_file);
if (link(reg_file, old_file))
error("Link(%s, %s): %m", reg_file, old_file);
debug4("Link(%s, %s): %m", reg_file, old_file);
(void) unlink(reg_file);
if (link(new_file, reg_file))
error("Link(%s, %s): %m", new_file, reg_file);
debug4("Link(%s, %s): %m", new_file, reg_file);
(void) unlink(new_file);
}
xfree(old_file);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment