We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7c611a commit f93f855Copy full SHA for f93f855
dissect/target/plugins/os/windows/log/mssql.py
@@ -83,7 +83,7 @@ def errorlog(self) -> Iterator[MssqlErrorlogRecord]:
83
for line in fh:
84
# If we have a buffer with a timestamp and
85
# our current line also has a timestamp,
86
- # we should have a record to be yielded.
+ # we should have a complete record in our buffer.
87
if previous_ts := RE_TIMESTAMP_PATTERN.match(buf):
88
if current_ts := RE_TIMESTAMP_PATTERN.match(line):
89
yield MssqlErrorlogRecord(
0 commit comments