Skip to content

Commit f490023

Browse files
committed
minor fixes
1 parent 90b6d04 commit f490023

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/stream.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ stop_streaming(XLogRecPtr xlogpos, uint32 timeline, bool segment_finished)
292292
/* we assume that we get called once at the end of each segment */
293293
if (segment_finished)
294294
{
295-
elog(INFO, _("finished segment at %X/%X (timeline %u)"),
295+
elog(VERBOSE, _("finished segment at %X/%X (timeline %u)"),
296296
(uint32) (xlogpos >> 32), (uint32) xlogpos, timeline);
297297

298298
append_wal_segment(xlog_files_list, timeline, xlogpos,
@@ -439,4 +439,4 @@ append_wal_segment(parray *filelist, uint32 timeline, XLogRecPtr xlogpos, char *
439439
/* append file to filelist */
440440
elog(VERBOSE, "Append WAL segment: \"%s\"", wal_segment_relpath);
441441
parray_append(filelist, file);
442-
}
442+
}

0 commit comments

Comments
 (0)