Skip to content

Commit 37e0fda

Browse files
authored
change "Fetching repo for ..." log message from info to debug (#871)
* change "Fetching repo for ..." log message from info to debug * add changelog
1 parent 8879991 commit 37e0fda

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
* `Nextflowrunner`: fix publishing of directories when the output file name template contains a trailing slash (PR #867).
88

9+
* `Logging`: Reduce log level for fetching repositories from info to debug (PR #871).
10+
911
# Viash 0.9.6 (2025-10-10): Hotfix for dependency path resolution
1012

1113
This release fixes an issue with dependency resolution in some edge cases that was introduced in Viash 0.9.5.

src/main/scala/io/viash/config/dependencies/AbstractGitRepository.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ trait AbstractGitRepository extends Repository with Logging {
9090
// If a new one is checked out, copy it to the cache
9191
// If a cached repo is used, copy it to a new temporary folder
9292
def getSparseRepoInTemp(): AbstractGitRepository = {
93-
info(s"Fetching repo for $uri")
93+
debug(s"Fetching repo for $uri")
9494
findInCache() match {
9595
case Some(repo) if repo.checkCacheStillValid() =>
9696
debug(s"Using cached repo from ${repo.localPath}")

0 commit comments

Comments
 (0)