fix issue logs of ScriptTask, Issue 102

This commit is contained in:
Fernando Ontiveros
2025-06-30 18:39:11 -04:00
parent ccb4387f4d
commit 185753d88c

View File

@@ -40,7 +40,7 @@ class Logger
$this->fileExtension = '.log'; $this->fileExtension = '.log';
} }
$this->fileSeparatorVersion = "_"; $this->fileSeparatorVersion = "_";
$this->path = $pathData . "log" . $pathSep; $this->path = $pathData . "logs" . $pathSep;
$this->fullName = $this->fileName . $this->fileExtension; $this->fullName = $this->fileName . $this->fileExtension;
$this->filePath = $this->path . $this->fullName; $this->filePath = $this->path . $this->fullName;
@@ -108,4 +108,3 @@ class Logger
fclose($file); fclose($file);
} }
} }