Debug.log not outputing on console

main : Program () Model Message
main =
    let 
        _ = 
            Debug.log "starting" 1
    in
    Browser.application 
        { init = init
        , view = view
        , update = update
        , subscriptions = subscriptions    
        , onUrlChange = on_url
        , onUrlRequest = on_req
        }

I wold expect this to output on console on app start but it does nothing. I’m doing elm make without --optimize flag. What am i doing wrong?

1 Like

ok, i’m sorry for spam but i probably missed something so now suddenly everything works fine

1 Like

Cool !! … I’m glad is solved !!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.