We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7e6f77 commit a9b5497Copy full SHA for a9b5497
src/Oplog.zig
@@ -312,6 +312,7 @@ pub const OplogIterator = struct {
312
}
313
var buf: [file_name_size]u8 = undefined;
314
const file_name = try generateFileName(&buf, self.files.items[self.current_file_index].id);
315
+ log.info("reading oplog file {s}", .{file_name});
316
const file = try self.dir.openFile(file_name, .{});
317
self.current_iterator = OplogFileIterator.init(self.allocator, file);
318
0 commit comments