elm-debug-transformer

1 · · Aug. 22, 2021, 9:29 a.m.
elm-debug-transformer Transform Elm Debug.log output into nice log object with custom formatter Right now you can insert only alphabet characters and spaces as a Debug.log tag. -- this would parse successfuly Debug.log "Some tag string" thingToPrintToConsole -- this would NOT BE PARSED Debug.log "Some String (with non [a-zA-Z] chars or numbers in it) " thingToPrintToConsole This limitation is due to the problem recognizing arbitrary tag text from the rest of the types. I’m aware of that limit...