diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-10-04 15:45:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-04 15:45:04 +0200 |
commit | 0afef2786032b5141d420aafba76eacb86f52cb1 (patch) | |
tree | 780f3de4bcb7b39813aa315755d1044b12bf6cb6 | |
parent | ded541408c8aeaab6df0ccd840b5fe2ee7ea40d2 (diff) | |
parent | 718e34a075f63c2c8af14a81b9a49ad8781470f1 (diff) | |
download | nextcloud-server-0afef2786032b5141d420aafba76eacb86f52cb1.tar.gz nextcloud-server-0afef2786032b5141d420aafba76eacb86f52cb1.zip |
Merge pull request #11610 from nextcloud/bugfix/noid/stable14-fix-call-to-logger
[14] Fix call to logger
-rw-r--r-- | apps/theming/lib/ImageManager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/lib/ImageManager.php b/apps/theming/lib/ImageManager.php index dfbdb582da6..8c144bfe6ae 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 { |