[alodavi/improving_loading_settings_messaging] logging the path instead of just the name

This commit is contained in:
alodavi 2018-05-15 14:06:50 +02:00
parent b72f36f156
commit b30159aded
1 changed files with 1 additions and 1 deletions

View File

@ -1039,7 +1039,7 @@ private[sbt] object Load {
// Grab all the settings we already loaded from sbt files
def settings(files: Seq[File]): Seq[Setting[_]] = {
if (files.nonEmpty)
log.info(s"${files.map(_.getName).mkString("Loading settings from ", ",", " ...")}")
log.info(s"${files.map(_.getPath).mkString("Loading settings from ", ",", " ...")}")
for {
file <- files
config <- (memoSettings get file).toSeq