Skip to content

Commit 24285bc

Browse files
Changed log level to error when failing a job via the tracker
1 parent 4359d1a commit 24285bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/JobTracker.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public function failed(?string $message = null): void
110110
{
111111
if (null !== $model = $this->model()) {
112112
if ($message) {
113-
$model->logInfo($message);
113+
$model->logError($message);
114114
}
115115

116116
$model->update(['failed_at' => Carbon::now()]);

0 commit comments

Comments
 (0)