diff --git a/ui/src/Error.elm b/ui/src/Error.elm index 612d92b5..a9c0d7f1 100644 --- a/ui/src/Error.elm +++ b/ui/src/Error.elm @@ -6,6 +6,7 @@ module Error exposing (handle) +import Debug import Http @@ -25,4 +26,8 @@ handle error = "Bad status: " ++ String.fromInt code Http.BadBody err -> - err + let + _ = + Debug.log "Bad body error: " err + in + "Invalid response body"