I'm new to FTL templates and I want to show the first 100 lines of the build log. I'm given the original script to show the entire build log from the TC documentation, which is this:
<#list build.buildLog.messages[1..] as message><#-- skipping the first message (it is a root node)-->
<#if message.status == "ERROR" || message.status == "FAILURE" >
${message.text}
</#if>
</#list>
What should I add/change to only show the first 100 lines?