mirror of
https://github.com/friendica/friendica
synced 2024-11-18 15:03:41 +00:00
Fix logic
This commit is contained in:
parent
3db2778fcd
commit
3894b6fa41
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ class StreamLogger extends AbstractLogger implements IAmAStrategy
|
|||
$this->fileSystem = $fileSystem;
|
||||
|
||||
$stream = $this->logfile ?? $config->get('system', 'logfile');
|
||||
if ((@file_exists($stream) && !@is_writable($stream)) || @is_writable(basename($stream))) {
|
||||
if ((@file_exists($stream) && !@is_writable($stream)) && !@is_writable(basename($stream))) {
|
||||
throw new LoggerArgumentException(sprintf('%s is not a valid logfile', $stream));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue