Merge pull request #7396 from mkurz/uri_log_dependencyBrowseTree

This commit is contained in:
eugene yokota 2023-10-07 13:03:25 -04:00 committed by GitHub
commit 5d6d30ed1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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
}