HandleMainLoopException puts exception StackTrace in the EventSource Message
eerhardt opened this issue · 1 comments
Describe the bug
When a connection exception happens, we log a message to the RabbitMqClientEventSource
. However, the full exception ToString is being logged in the Message
of the EventSource event.
Reproduction steps
- Add an
EventListener
to therabbitmq-client
EventSource. - Create a RabbitMQ connection to a server.
- Stop the server to generate an exception
- Observe the EventSource Error event data
This can easily be done with a .NET Aspire app that uses the RabbitMQ component and looking in the Structured Logs entry for the exception.
Expected behavior
The Message should only contain the message information. Not the StackTrace.
Additional context
I believe the issue is isolated to the HandleMainLoopException
method. The other places that log exceptions all appear to pass the caught exception into the logging correctly.
In HandleMainLoopException
, it puts the ShutdownEventArgs
ToString() into the message.
And the ShutdownEventArgs
ToString() puts the full exception.ToString()
in the result:
We could fix this by adding a new method like "GetEventLogMessage()" method that contains all this information, but doesn't include the full ToString of the exception in the message.
See dotnet/aspire#2118 (comment) for more details.
Feel free to open a PR targeting 6.x
. I can merge / port it into main
.