Skip to content

Commit

Permalink
improvement: Add debug messages for initializing folders
Browse files Browse the repository at this point in the history
  • Loading branch information
tgodzik committed Aug 15, 2024
1 parent 1e68466 commit 2f9c9e1
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ class WorkspaceFolders(
val (scalaProjects, nonScalaProjects) =
folders.partition(_.isMetalsProject)
val knowProjectRefs = scalaProjects.flatMap(_.projectReferences).toSet
if (knowProjectRefs.nonEmpty)
scribe.debug("Found project references: " + knowProjectRefs)
if (scalaProjects.nonEmpty)
scribe.debug("Found Scala projects: " + scalaProjects.map(_.path))
val scalaServices =
scalaProjects
.filterNot(path =>
Expand Down

0 comments on commit 2f9c9e1

Please sign in to comment.