in webhooks-server/src/main/java/jetbrains/buildServer/webhook/WebhooksEventListener.java [173:180]
private void warn(String problemSource, String problemCode, String message) {
if (!problemCode.equals(lastErrorCodeMap.get(problemSource))) {
LOG.warn(format("%s The following failures with the same problem won't be logged for project %s.", message, problemSource));
lastErrorCodeMap.put(problemSource, problemCode);
} else if (LOG.isDebugEnabled()) {
LOG.debug(message);
}
}