armanbilge/calico

IOWebApp swallows exceptions

kubukoz opened this issue · 1 comments

In 0.2.0-RC2:

object Main extends IOWebApp {

  def render: Resource[cats.effect.IO, HtmlElement[cats.effect.IO]] = Resource
    .raiseError[IO, Nothing, Throwable](
      new Exception("Not implemented yet!")
    )

}

Nothing gets printed to the console.