mirror of https://github.com/sbt/sbt.git
Switch to lower case for some messages
There is push to move away from complete sentences in warnings.
This commit is contained in:
parent
079cf2178c
commit
73235d12e0
|
|
@ -1516,7 +1516,7 @@ object Defaults extends BuildCommon {
|
|||
classes match {
|
||||
case multiple if multiple.size > 1 && logWarning =>
|
||||
val msg =
|
||||
"Multiple main classes detected. Run 'show discoveredMainClasses' to see the list."
|
||||
"multiple main classes detected: run 'show discoveredMainClasses' to see the list"
|
||||
logger.warn(msg)
|
||||
case _ =>
|
||||
}
|
||||
|
|
|
|||
|
|
@ -900,7 +900,7 @@ object BuiltinCommands {
|
|||
.getOrElse(GCUtil.defaultMinForcegcInterval)
|
||||
val exec: Exec = exchange.blockUntilNextExec(minGCInterval, s1.globalLogging.full)
|
||||
if (exec.source.fold(true)(_.channelName != "console0")) {
|
||||
s1.log.info(s"Running remote command: ${exec.commandLine}")
|
||||
s1.log.info(s"received remote command: ${exec.commandLine}")
|
||||
}
|
||||
val newState = s1
|
||||
.copy(
|
||||
|
|
|
|||
Loading…
Reference in New Issue