in regex-parser/src/jetbrains.buildServer.cmakerunner/regexparser/RegexPattern.java [84:92]
protected String getDescription(String line, @NotNull final Matcher matcher) {
if ("$line".equals(myDescriptionExpression)) {
return line;
}
if (StringUtil.isEmptyOrSpaces(myDescriptionExpression)) {
return line;
}
return parseStr(matcher, myDescriptionExpression);
}