- Issue created by @leymannx
- Issue was unassigned.
- Status changed to Needs review
12 months ago 10:13am 22 December 2023
catch (\Exception $e) {
$this->logger()->error("An error occurred during file generation: @error", ['@error' => $e->getMessage()]);
}
leads to:
[error] An error occurred during file generation: @error
catch (\Exception $e) {
$this->logger()->error(dt("An error occurred during file generation: @error", ['@error' => $e->getMessage()]));
}
and I can read the error (coming from a different module that needs its own fix in the different module):
[error] An error occurred during file generation: The Gitlab url is not defined.
Needs review
1.0
Code