Skip to content

Commit

Permalink
[Bugfix] wrong type
Browse files Browse the repository at this point in the history
  • Loading branch information
maketterer committed Aug 1, 2024
1 parent 19aa1dc commit 5ce625b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Domain/Model/EZLogger.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function __construct(string $filename = "ez-logging.log", bool $prependDateTime
$this->openFileWriter($filename, $prependDateTime);
}

public function writeLog(array|string $msg, bool $newLine = 1)
public function writeLog(array|string $msg, bool $newLine = TRUE)
{
if ($this->extensionConfiguration["activateLog"] == "1") {
try {
Expand Down

0 comments on commit 5ce625b

Please sign in to comment.