Remove Debug calls

This commit is contained in:
3wc 2021-04-25 16:00:04 +02:00
parent 31d590c3fe
commit 5f80d2577a
1 changed files with 4 additions and 12 deletions

View File

@ -94,12 +94,8 @@ update msg model =
Just item ->
( { model | status = Success (item) }, loadREADME item)
Err err ->
let
_ =
Debug.log "Something failed" err
in
( { model | status = Failure } , Cmd.none )
Err _ ->
( { model | status = Failure } , Cmd.none )
GotText result ->
case result of
@ -113,12 +109,8 @@ update msg model =
in
( { model | readme = Regex.replace regex (\_ -> "") content }, Cmd.none )
Err err ->
let
_ =
Debug.log "Something failed" err
in
( { model | status = Failure } , Cmd.none )
Err _ ->
( { model | status = Failure } , Cmd.none )