We've found on a few occasions points where a little console statement would have made debugging so much easier.
Currently for server-side rendering a shim is included for console. I'm pondering two possible solutions that could be handy here. One is to allow the console statement to write to log4net or similar the other is to have the console statement append to an array and then if in debug mod (flagged somehow TBC) it spits the results out in page in a div at the end or as a client-side call to console.log( myinternallogger ); which would allow us to see the output in the browsers dev tools.
Thoughts?