mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Fix bad error message.
This commit is contained in:
@@ -102,7 +102,7 @@ class DownloadExchangeRates implements ShouldQueue
|
||||
try {
|
||||
$res = $client->get($url);
|
||||
} catch (ConnectException|RequestException $e) {
|
||||
app('log')->warning(sprintf('Trying to grab "%s" resulted in error "%d".', $url, $e->getMessage()));
|
||||
app('log')->warning(sprintf('Trying to grab "%s" resulted in error "%s".', $url, $e->getMessage()));
|
||||
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user