File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -107,13 +107,15 @@ public function getLastScannedFilePositionForQuery(?string $query = ''): ?int
107
107
public function earliestTimestamp (): int
108
108
{
109
109
return $ this ->getMetadata ('earliest_timestamp ' )
110
- ?? LogViewer::getFilesystem ()->exists ($ this ->path ) ? LogViewer::getFilesystem ()->lastModified ($ this ->path ) : 0 ;
110
+ ?? 0 ;
111
+ // ?? LogViewer::getFilesystem()->exists($this->path) ? LogViewer::getFilesystem()->lastModified($this->path) : 0;
111
112
}
112
113
113
114
public function latestTimestamp (): int
114
115
{
115
116
return $ this ->getMetadata ('latest_timestamp ' )
116
- ?? LogViewer::getFilesystem ()->exists ($ this ->path ) ? LogViewer::getFilesystem ()->lastModified ($ this ->path ) : 0 ;
117
+ ?? 0 ;
118
+ // ?? LogViewer::getFilesystem()->exists($this->path) ? LogViewer::getFilesystem()->lastModified($this->path) : 0;
117
119
}
118
120
119
121
public function scan (int $ maxBytesToScan = null , bool $ force = false ): void
You can’t perform that action at this time.
0 commit comments