Skip to content

Commit b5922f1

Browse files
committed
Merge branch 'main' into 3.x
2 parents 636ca90 + 7e6908c commit b5922f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Readers/IndexedLogReader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public function scan(int $maxBytesToScan = null, bool $force = false): static
8989
while (
9090
(! isset($lastPositionToScan) || $currentLogPosition < $lastPositionToScan)
9191
&& ($stopScanningAfter > microtime(true))
92-
&& ($line = fgets($this->fileHandle, 1024)) !== false
92+
&& ($line = fgets($this->fileHandle)) !== false
9393
) {
9494
$matches = [];
9595
$ts = null;

0 commit comments

Comments
 (0)