include logging backing file in 'about' command output

This commit is contained in:
Mark Harrah 2011-07-24 17:36:42 -04:00
parent 30baf74169
commit 00c41ae59a
1 changed files with 2 additions and 1 deletions

View File

@ -136,7 +136,8 @@ object BuiltinCommands
{
"This is sbt " + sbtVersion(s) + "\n" +
aboutProject(s) +
"sbt, sbt plugins, and build definitions are using Scala " + scalaVersion(s)
"sbt, sbt plugins, and build definitions are using Scala " + scalaVersion(s) + "\n" +
"All logging output for this session is available at " + CommandSupport.globalLogging(s).backing
}
def aboutProject(s: State): String =
if(Project.isProjectLoaded(s))