Skip to content

Commit

Permalink
docs(downloader): Further improve a log message to include the revision
Browse files Browse the repository at this point in the history
This is a follow-up to dfa843c.

Signed-off-by: Sebastian Schuberth <sebastian@doubleopen.org>
  • Loading branch information
sschuberth committed Sep 3, 2024
1 parent adbc676 commit a4d249f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion downloader/src/main/kotlin/WorkingTreeCache.kt
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ class DefaultWorkingTreeCache : WorkingTreeCache {
workingTreeMutex.withLock {
workingTrees[key]?.run {
logger.debug {
"Deleting cached working tree for ${getRemoteUrl()} from '${getRootPath()}'..."
"Deleting cached working tree at '${getRootPath()}' for ${getRemoteUrl()} and revision " +
"${getRevision()} ..."
}

getRootPath().safeDeleteRecursively(force = true)
Expand Down

0 comments on commit a4d249f

Please sign in to comment.