I keep getting warning thrown by the JsMin filter that – although most of the time seem logical – kind of fill up my logs with unecessary warnings :
[2013-05-30 08:37:46] log.ERROR: "JsMinFilter" will not be applied to asset "components/icomoon/site/style.css" due to failing requirements or invalid filter name. [] []
[2013-05-30 08:37:47] log.ERROR: "JsMinFilter" will not be applied to asset "components/icomoon/site/style.css" due to failing requirements or invalid filter name. [] []
[2013-05-30 08:38:35] log.ERROR: "CssMinFilter" will not be applied to asset "components/icomoon/site/style.css" due to failing requirements or invalid filter name. [] []
[2013-05-30 08:38:35] log.ERROR: "JsMinFilter" will not be applied to asset "components/icomoon/site/style.css" due to failing requirements or invalid filter name. [] []
[2013-05-30 08:38:35] log.ERROR: "CssMinFilter" will not be applied to asset "components/icomoon/site/style.css" due to failing requirements or invalid filter name. [] []
[2013-05-30 08:38:35] log.ERROR: "JsMinFilter" will not be applied to asset "components/icomoon/site/style.css" due to failing requirements or invalid filter name. [] []
[2013-05-30 08:38:35] log.ERROR: "CssMinFilter" will not be applied to asset "app/js/dynamic-loading.js" due to failing requirements or invalid filter name. [] []
[2013-05-30 08:38:35] log.ERROR: "JsMinFilter" will not be applied to asset "app/js/dynamic-loading.js" due to failing requirements or invalid filter name. [] []
[2013-05-30 08:38:35] log.ERROR: "CssMinFilter" will not be applied to asset "app/js/dynamic-loading.js" due to failing requirements or invalid filter name. [] []
What he calls "failing requirements" is either trying to apply the JsMin filter to a CSS file (although I specified ->whenAssetIs('*.js') on the Js filter) or simply me not being in production which is a requirement too.
I don't think it should throw warnings in the latter case.
I keep getting warning thrown by the
JsMin
filter that – although most of the time seem logical – kind of fill up my logs with unecessary warnings :What he calls "failing requirements" is either trying to apply the
JsMin
filter to a CSS file (although I specified->whenAssetIs('*.js')
on the Js filter) or simply me not being in production which is a requirement too. I don't think it should throw warnings in the latter case.