You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, io::printfn("err: %s", err) printout only constant part err: SOME_ERROR, maybe alter formatting of error with type prefix err: MyError.SOME_ERROR ?
The text was updated successfully, but these errors were encountered:
Sometimes, yes. I'd be fine with possibility of accessing type name: io::printfn("err: %s.%s", err.typeof, err). Is it possible with current version of the language?
Currently,
io::printfn("err: %s", err)
printout only constant parterr: SOME_ERROR
, maybe alter formatting of error with type prefixerr: MyError.SOME_ERROR
?The text was updated successfully, but these errors were encountered: