Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2018-10-04 08:40:31 +0300
committerGitHub <noreply@github.com>2018-10-04 08:40:31 +0300
commit3c42510f02f7fc7d7261122c3c2c03d1e61797a4 (patch)
treee040ac3cca2d37f915d32b664c2a291ac326a490 /apps
parentdc037d93321f3b6d15d8963918d581303f7e1cd0 (diff)
parent1243caea2e1ad57f9a723ea9cdfd160fe1eabb42 (diff)
Merge pull request #11603 from nextcloud/bugfix/noid/fix-wrong-call-for-logger
Fix call to logger
Diffstat (limited to 'apps')
-rw-r--r--apps/theming/lib/ImageManager.php2
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 {