jpsbootstrap: skip noisy messages on teamcity

during a single build this verbose logging can
produce 100mb of logs purely for initiated and
processed messages. this was partially handled
in VMT-MR-3078 for vm-templates, but we also
have these data being logged in jpsbootstrap
steps of regular builds. the information is
not that valuable compared to the amount of
logs it produces and started/completed should
be enough to investigate problematic
artifacts.


(cherry picked from commit b97b277fff4a9b17cc74e81769a5c4814ec3f8a9)

IJ-CR-172487

GitOrigin-RevId: 94bc0591ae6e6e6c4102058d85d56c233e23c2be
This commit is contained in:
Evgenii Novozhilov
2025-08-14 00:25:46 +03:00
committed by intellij-monorepo-bot
parent f168228991
commit cf8a9d9d9e

View File

@@ -153,8 +153,13 @@ class JpsBuild(communityRoot: BuildDependenciesCommunityRoot, private val myMode
info(text)
}
else {
// Warnings mean little for bootstrapping
verbose(text)
if (kind == BuildMessage.Kind.PROGRESS && (text.startsWith("GET INITIATED") || text.startsWith("GET PROGRESSED"))) {
// ignore
}
else {
// Warnings mean little for bootstrapping
verbose(text)
}
}
}