mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-13 07:53:16 +00:00
Fix bad error message.
This commit is contained in:
@@ -102,7 +102,7 @@ class DownloadExchangeRates implements ShouldQueue
|
|||||||
try {
|
try {
|
||||||
$res = $client->get($url);
|
$res = $client->get($url);
|
||||||
} catch (ConnectException|RequestException $e) {
|
} 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;
|
return;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user