I'm getting a lot of noise from the output of the 3rd party's page i'm currently playing with and i wonder if there's a way to filter the output on the console. Something like Logcat's flags. Is there a way to do that?

EDIT

I found a way to disable the output that was causing the biggest ammount of noise. I clicked with the right-clicked on the console and then disabled the XMLHttpRequest Logging option. It's not what i wanted, but it's what i needed.

link|improve this question

Filter in what way? Like by site? – Blender Jul 12 '11 at 3:57
I'm developing an extension which outputs to the console, and the page also outputs to the console... i'd like to do something like console.log('extension', 'The message'); and filter the output so i only see stuff flagged with 'extension' instead of the whole output. EDIT Or filter by levels: console.warn(), console.error() – Jorge Jul 12 '11 at 3:59
I see. I don't think that functionality exists in Chrome... – Blender Jul 12 '11 at 4:02
Oh, that's a bummer :( – Jorge Jul 12 '11 at 4:03
1  
You can search for a specific text in your error messages, using the search box in the top right corner of the console. – NoBugs Jul 21 '11 at 0:21
show 4 more comments
feedback

3 Answers

Going further than the above answer comments..

Go in console mode ( Control Shift J on Windows ) , enter this :

console.nativeLog = console.log;

Then enter this

console.log = function( a, b ){ if(a=="extension") console.nativeLog( b ) }

The first line keeps the native implementation in a safe spot. The second line does pretty much what you request.

Works for me.

link|improve this answer
feedback

If you have control of both the page and extension scripts then you can run both through your own function. In that function you could now control output.

var pageErrors = true;
var extErrors = true;

function outputToConsole(message, sender) {
   if (sender == 'page' && pageErrors) { console.write(message); }
   if (sender == 'ext' && extErrors) { console.write(message); }
}

Everywhere you want to log replace console.log with outputToConsole()

link|improve this answer
I don't have control of the page, unfortunately. – Jorge Jul 12 '11 at 4:19
1  
Hmmm, got me thinking. Check this out on SO. This guy turns logging on and off and even has an example. stackoverflow.com/questions/1215392/… – mrtsherman Jul 12 '11 at 4:34
Thanks for my first bounty! Any reason you did not flag my post as the answer ? – tomdemuyt Aug 1 '11 at 20:39
feedback

I just blogged about my solution to this. I modified Ben Alman's "ba-debug" library and made a modular "Trace" object designed to be used with different modules or areas of the code (defined by you).

Basic usage:

   var _trace = new Trace('ModuleName');

Then, when you want to trace out any level of diagnostics, you do:

   _trace.error('error level message');
   _trace.warn('warning level message');
   _trace.info('information level message');
   _trace.log('log level message');
   _trace.debug('debug level message');

Then, in your page, or in your console, you can do this:

   Trace.traceLevel('ModuleName', Trace.Levels.warn); 

Here's my blog post for more detail and the JavaScript file: http://codemares.blogspot.com/2011/09/much-to-my-chagrin-i-have-been-doing.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.