diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-10-04 07:40:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-04 07:40:31 +0200 |
commit | 3c42510f02f7fc7d7261122c3c2c03d1e61797a4 (patch) | |
tree | e040ac3cca2d37f915d32b664c2a291ac326a490 | |
parent | dc037d93321f3b6d15d8963918d581303f7e1cd0 (diff) | |
parent | 1243caea2e1ad57f9a723ea9cdfd160fe1eabb42 (diff) | |
download | nextcloud-server-3c42510f02f7fc7d7261122c3c2c03d1e61797a4.tar.gz nextcloud-server-3c42510f02f7fc7d7261122c3c2c03d1e61797a4.zip |
Merge pull request #11603 from nextcloud/bugfix/noid/fix-wrong-call-for-logger
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 { |