Skip to content

Commit 0343c06

Browse files
refactor: fix typo in log messages (#10035)
1 parent ed5d080 commit 0343c06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

system/Email/Email.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1708,7 +1708,7 @@ protected function spoolEmail()
17081708
$success = $this->{$method}();
17091709
} catch (ErrorException $e) {
17101710
$success = false;
1711-
log_message('error', 'Email: ' . $method . ' throwed ' . $e);
1711+
log_message('error', 'Email: ' . $method . ' threw ' . $e);
17121712
}
17131713

17141714
if (! $success) {
@@ -2265,7 +2265,7 @@ public function __destruct()
22652265
} catch (ErrorException $e) {
22662266
$protocol = $this->getProtocol();
22672267
$method = 'sendWith' . ucfirst($protocol);
2268-
log_message('error', 'Email: ' . $method . ' throwed ' . $e);
2268+
log_message('error', 'Email: ' . $method . ' threw ' . $e);
22692269
}
22702270
}
22712271
}

0 commit comments

Comments
 (0)