Because I\'m lazy, I created a function log that basically is just an abbreviation of console.log:
log
console.log
function log() { console.log.a
When I reported it, it was refused but the answer was simple - create the shortcut like this:
var log = console.log.bind(console);
This doesn't leave out the line number, whilst you can call it like log(...).
log(...)