I've heard this before:
What I really get frustrated by is that I cannot wrap console.* and preserve line numbers
We enabled this via blackboxing a bit ago.
If you blackbox the script file the contains the console log wrapper, the script location shown in the console will be corrected to the original source file and line number. And then the source is a click away
You can try it out here: http://plnkr.co/edit/3wg4u9HUGXfFH0U7MR7j
You can right-click the file in the editor, as well.
FWIW, Blackboxing does a lot. Blackboxing a file means:
- Exceptions thrown from library code will not pause (if Pause on exceptions is enabled),
- Stepping into/out/over bypasses the library code,
- Event listener breakpoints don't break in library code,
- The debugger will not pause on any breakpoints set in library code.
Read more about it over at https://developer.chrome.com/devtools/docs/blackboxing
Cheers and thanks crbug/249575
