OutputDebugStringW function equivalent for Google Chrome extensions

12 Views Asked by At

Is there an equivalent to the OutputDebugStringW function for Google Chrome extensions? The problem with console.log, console.debug, etc. is that there is no one place where you can see all of the output. There is one place where you can see the output from the content scripts, another place where you can see the output from the background service worker, and yet another place where you can see the output from the DevTools page. An equivalent to the OutputDebugStringW function would provide a single place where you can easily see all output from all parts of the extension and easily save all output to a log file.

0

There are 0 best solutions below