mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-17 07:08:19 +00:00
Remove static references
This commit is contained in:
@@ -60,8 +60,8 @@ trait ModelInformation
|
||||
]
|
||||
)->render();
|
||||
} catch (Throwable $e) {
|
||||
Log::error(sprintf('Throwable was thrown in getActionsForBill(): %s', $e->getMessage()));
|
||||
Log::error($e->getTraceAsString());
|
||||
app('log')->error(sprintf('Throwable was thrown in getActionsForBill(): %s', $e->getMessage()));
|
||||
app('log')->error($e->getTraceAsString());
|
||||
$result = 'Could not render view. See log files.';
|
||||
throw new FireflyException($result, 0, $e);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user