Skip to content

Commit

Permalink
Remove println in sbt-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
lolgab committed Oct 29, 2023
1 parent 92a05fe commit 8b12075
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 8b12075

Please sign in to comment.