Skip to content
Snippets Groups Projects
Commit b9e1cc92 authored by srosse's avatar srosse
Browse files

no-jira: log warn in magick helper only if the command doesn't return a size

parent 25b68c96
No related branches found
No related tags found
No related merge requests found
......@@ -199,7 +199,9 @@ public class ImageMagickHelper extends BasicManager implements ImageHelperSPI {
} catch (InterruptedException e) {
//
}
logWarn("Could not generate thumbnail: "+thumbnailFile, null);
if(rv == null) {
logWarn("Could not generate thumbnail: "+thumbnailFile, null);
}
return rv;
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment