From 1986c1f5639627198a36e2b0390d848e2a13b5e8 Mon Sep 17 00:00:00 2001 From: Daniel Kesselberg Date: Wed, 3 Oct 2018 21:15:20 +0200 Subject: Fix call to logger Signed-off-by: Daniel Kesselberg --- apps/theming/lib/ImageManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/theming/lib') diff --git a/apps/theming/lib/ImageManager.php b/apps/theming/lib/ImageManager.php index dfbdb582da6..58879a9b471 100644 --- a/apps/theming/lib/ImageManager.php +++ b/apps/theming/lib/ImageManager.php @@ -117,7 +117,7 @@ class ImageManager { $pngFile = $folder->newFile($key . '.png'); $pngFile->putContent($finalIconFile->getImageBlob()); } catch (\ImagickException $e) { - $this->logger->info('The image was requested to be no SVG file, but converting it to PNG failed.', $e->getMessage()); + $this->logger->info('The image was requested to be no SVG file, but converting it to PNG failed.', [$e->getMessage()]); $pngFile = null; } } else { -- cgit v1.2.3