Skip to content

Commit

Permalink
Merge pull request #41 from lolgab/remove-println
Browse files Browse the repository at this point in the history
Remove `println` in sbt-plugin
  • Loading branch information
sjrd authored Oct 30, 2023
2 parents 92a05fe + 8b12075 commit 3097ff5
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,7 @@ class SbtTaskTimer(timers: ConcurrentHashMap[ScopedKey[_], BoxedLong], isDebugEn
}

getKey(task) match {
case Some(key) => {
println(key)
finishTiming(key)
}
case Some(key) => finishTiming(key)
case None => () // Ignore tasks that do not have key information
}

Expand Down

0 comments on commit 3097ff5

Please sign in to comment.