Debug.log
, as it stands, just logs your tag and a string representation of whatever argument you pass it. This works fine for a lot of debugging, but when logging nested structures, getting a one-line string instead of the browsers built-in representation can make for some tedious debugging sessions.
Would it be a good idea to change the output of Debug.log
to output a JS object in some cases? Or maybe even add a separate Debug
-function that always outputs the JS value? Maybe keeping strings but pretty printing them should be an option?