* @throws IOException
* @throws LessException
*/
private void processLessFile(String lessIncludeFilepath, String outputFilepath, URL lessCssJavascriptUrl)
throws IOException, LessException {
LessSource lessSource = new LessSource(new File(lessIncludeFilepath));
if (log.isDebugEnabled()) {
String result = lessSource.getNormalizedContent();
File lessSourceOutput = new File(outputFilepath + ".lesssource");
IOUtils.write(result, new FileOutputStream(lessSourceOutput));
log.debug("Full Less source from include file {0}, using lessCssJavascript at {1}"
+ ", is at {2}, output css will be written to {3}",
lessIncludeFilepath, lessCssJavascriptUrl.toString(), lessSourceOutput, outputFilepath);