Skip to content

Commit

Permalink
Merge pull request #956 from mikepenz/faeture/lower_log_noise
Browse files Browse the repository at this point in the history
Lower noise of log
  • Loading branch information
mikepenz authored Feb 17, 2024
2 parents 4bb5711 + 31b5e16 commit 1879991
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,11 @@ class DependencyCollector(
}
}
} catch (e: Throwable) {
LOGGER.warn("Found ambiguous variant - $resolvedDependency", e)
if (LOGGER.isDebugEnabled) {
LOGGER.warn("Found possibly ambiguous variant - $resolvedDependency - ${e.message}")
} else {
LOGGER.warn("Found possibly ambiguous variant - $resolvedDependency", e)
}
}
}
}
Expand Down

0 comments on commit 1879991

Please sign in to comment.