BenAlabaster
BenAlabaster

Reputation: 39836

How do I attach a trace listener to a running process?

I'm not sure if this is possible in the manner I am envisioning or not so I'm hoping someone can help me wrap my head around this.

I'm wanting to inject a TraceListener into a running process - kind of. I don't actually care how I attach to the process, but the end goal is to listen to the trace output of the running process and dump it out to a console window.

I can attach to the process okay, and I can write a TraceListener okay... where I'm coming unstuck is the bit in the middle. Anyone got any clue if this can be done? If so, can you give me a push in the right direction because I can't see the forest for the trees here.

Maybe I'm trying to approach this in the wrong way?

Upvotes: 9

Views: 4539

Answers (3)

Henk Holterman
Henk Holterman

Reputation: 273244

I don't think this is practical. It would be easy to create a listener at runtime, but that is something the App has to do, it involves adding something to a list.

You may want to make sure the Default listener isn't removed and use an OutputDebug tool to listen in.

Upvotes: 3

Dirk Vollmar
Dirk Vollmar

Reputation: 176169

Would DbgView from Sysinternals be enough for your needs? It will show you the trace messages of all running processes without having you to configure a trace listener prior to starting the process.

Upvotes: 2

Don Kirkby
Don Kirkby

Reputation: 56640

When I want to view debug output, I use a combination of log4net and DebugView. I can make log4net monitor a configuration file to allow me to change the log4net logging level at runtime, or I can use filters in DebugView.

Upvotes: 1

Related Questions