mirror of https://github.com/sbt/sbt.git
Merge pull request #5845 from eed3si9n/wip/sig_files_written
Demote [sig files written]
This commit is contained in:
commit
6ebba09020
|
|
@ -70,10 +70,16 @@ class BuildServerReporter(
|
||||||
}
|
}
|
||||||
|
|
||||||
override def logInfo(problem: Problem): Unit = {
|
override def logInfo(problem: Problem): Unit = {
|
||||||
publishDiagnostic(problem)
|
// demote this message https://github.com/scala/bug/issues/12097
|
||||||
|
val sigFilesWritten = "[sig files written]"
|
||||||
|
if (problem.message == sigFilesWritten) {
|
||||||
|
logger.debug(sigFilesWritten)
|
||||||
|
} else {
|
||||||
|
publishDiagnostic(problem)
|
||||||
|
|
||||||
// console channel can keep using the xsbi.Problem
|
// console channel can keep using the xsbi.Problem
|
||||||
logger.infoEvent(problem)
|
logger.infoEvent(problem)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private def publishDiagnostic(problem: Problem): Unit = {
|
private def publishDiagnostic(problem: Problem): Unit = {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue