I’ve added codesite method tracing to a database engine we use to help me profile queries, triggers etc.
I end up with something like this
which isn’t the best UI for this (possibly unusual) task.
Is there a way to read this (preferably live) data so that I can then present it in a more appropriate way and more importantly analyse it ?
Hi David,
Your best option would be to handle the OnSendMsg event of the CodeSite Loggers that you are using. The event handler is passed three parameters. The Sender represents the CodeSite object that is being used to send the message. The MsgData parameter is of type TCodeSiteMsgData, and represents an object that describes all attributes of the formatted message. The Handled parameter controls whether or not the message is sent to the current destination. Set Handled to True to prevent the message from being sent to the current destination.