views:

35

answers:

1

Hello again,

I'd like to make the Fiddler Event Log more readable.

Right now I use #### lines so I can check the different responses and self-made actions.

The best thing would be the use of font operations like color, bold or italic.

I could just create my own log-frame, but I'd like to use all available Fiddler functionalities.

It should be possible as the Title "-= Fiddler Event Log =-" is bold, too.

There is a Fiddler.FiddlerApplication.Log.LogFormat(string format, param object[] args) function which [if I got that] wants to have the string to format and the commands how it should be formated. I cannot find anything useful to fill in that..

Any ideas, suggestions, trys or solutions?

greetings
TheChange

+1  A: 

There's currently no way to do that with the very simplistic FiddlerEventLog addon-- it just takes the string and displays it. (LogFormat refers to string formatting, not display formatting).

You could pretty easily write your own add-on that formats the event log however you want-- e.g. it would be smart enough to turn "!B:Foo" into bold text Foo or similar.

I'll probably get around to doing something like this myself at some point.

EricLaw -MSFT-
thanks Eric - this always helps :)
TheChange