From 185753d88c6986fafe0dcccd14bf3cfd386b0dd4 Mon Sep 17 00:00:00 2001 From: Fernando Ontiveros Date: Mon, 30 Jun 2025 18:39:11 -0400 Subject: [PATCH] fix issue logs of ScriptTask, Issue 102 --- gulliver/system/class.logger.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gulliver/system/class.logger.php b/gulliver/system/class.logger.php index 080c62b93..bd8fa7138 100644 --- a/gulliver/system/class.logger.php +++ b/gulliver/system/class.logger.php @@ -40,7 +40,7 @@ class Logger $this->fileExtension = '.log'; } $this->fileSeparatorVersion = "_"; - $this->path = $pathData . "log" . $pathSep; + $this->path = $pathData . "logs" . $pathSep; $this->fullName = $this->fileName . $this->fileExtension; $this->filePath = $this->path . $this->fullName; @@ -108,4 +108,3 @@ class Logger fclose($file); } } -