Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Quafadas committed Jun 30, 2024
1 parent ad4920c commit fdf1554
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/src/open.browser.scala
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def openBrowser(openBrowserAt: Option[String], port: Port)(logger: Scribe[IO]):
case None => logger.trace("No openBrowserAt flag set, so no browser will be opened")
case Some(value) =>
val openAt = URI(s"http://localhost:$port$value")
logger.info(s"Attemptiong to open browser to $openAt") >>
logger.info(s"Attempting to open browser to $openAt") >>
IO(
if Desktop.isDesktopSupported() && Desktop.getDesktop().isSupported(Desktop.Action.BROWSE) then
IO(Desktop.getDesktop().browse(openAt))
Expand Down

0 comments on commit fdf1554

Please sign in to comment.