javascript console.log revamped with stacktrace

This post is a small tip about how I revamped console.log.

Actually console.log is a handy function, but having a stacktrace at the time of the log would be sometimes nice. Therefore I wrote a log function, which keeps stacktraces of the log in a global history. So you keep logging as before and when you need more information you can get it from the global history object. The idea for this came to me, when I saw a similar implementation from Paul Irish (without stacktrace though).

so I revamped it to something like this: 

Try it out in console: