Skip to content

Commit

Permalink
Merge pull request #11603 from nextcloud/bugfix/noid/fix-wrong-call-f…
Browse files Browse the repository at this point in the history
…or-logger

Fix call to logger
  • Loading branch information
rullzer authored Oct 4, 2018
2 parents dc037d9 + 1243cae commit 3c42510
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/theming/lib/ImageManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public function getImage(string $key, bool $useSvg = true): ISimpleFile {
$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 {
Expand Down

0 comments on commit 3c42510

Please sign in to comment.