Actions
Bug #84586
closedGM messages spoil console output of scheduler task
Start date:
2018-04-03
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
9
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
The task 'File Abstraction Layer: Update storage index (scheduler)' will handle all missing files and provide sys_file records for them.
If the identified file is of type SVG, there will be a console output like /usr/bin/gm identify: Request did not return an image.
. There is no way to get rid of the messages except redirecting all scheduler output to /dev/null, what is not always wanted.
The message is caused by the exec() command of ImageMagick, which in turn is issued before the fallback handling for SVG files, introduced with https://forge.typo3.org/issues/66268.
Solution to get the output silent: switch the position of the fallbacks, first SVG, then IM identify.
Actions