Include uri in log of dependencyBrowseTree

This commit is contained in:
Matthias Kurz 2023-10-07 12:20:01 +02:00
parent 76fad81522
commit 5fddf3d741
No known key found for this signature in database
GPG Key ID: 0B4AAA92F1117EF5
1 changed files with 1 additions and 1 deletions

View File

@ -244,7 +244,7 @@ object DependencyTreeSettings {
def openBrowser(uriKey: TaskKey[URI]) =
Def.task {
val uri = uriKey.value
streams.value.log.info("Opening in browser...")
streams.value.log.info(s"Opening ${uri} in browser...")
java.awt.Desktop.getDesktop.browse(uri)
uri
}