Belan
Belan
It would be cool, if logs without an exception would be supported. Currently we would have to log them to somewhere else and check both places. It's much more comfortable...
Oh and if I just set it via reflection anyway, it still doesn't work. I get this exception: ``` ArgumentOutOfRangeException: Endpoint rabbitmq://exchange/my-producer/routing/my-routing-key does not have an active sending agent. Message...
I tried to make an attribute for the message DTOs, where I can set the exchange and routing key to use. Exchange would be the same for most messages, but...
We also currently have multiple instances registered and one page with a top bar and an iframe below it to switch between them. Was easy to do and looks so...
I have a similar problem. My Wall Thermostat II 230V is not discovered. My Thermostat II on the other hand is discovered and works.
I figured out now, that the System.Reflection.RuntimeMethodInfo is the minimal api Microsoft.AspNetCore.Routing.RouteEndpoint that is passed to `JsonSerializer.Serialize(jsonWriter, x.Value, valueType, jsonSerializerOptions);` [here](https://github.com/Cysharp/ZLogger/blob/d44952429779c79eb0fdcc675a1224003bbf7172/src/ZLogger/LogStates/StringFormatterLogState.cs#L103) and then throws. Would it make sense to fall...
hmm, while experimenting I also encountered this quite frequently: ``` ZLogger error: System.ObjectDisposedException: IFeatureCollection has been disposed. Object name: 'Collection'. at Microsoft.AspNetCore.Http.Features.FeatureReferences`1.ThrowContextDisposed() at Microsoft.AspNetCore.Http.Features.FeatureReferences`1.ContextDisposed() at Microsoft.AspNetCore.Http.Features.FeatureReferences`1.Fetch[TFeature](TFeature& cached, Func`2 factory) at...
I figured out that if you disable serialization of the logs `State` property (information, that was merged into the message), then it doesn't corrupt the logs. ``` .AddZLoggerConsole(o => {...
I made it reproducible with a little sample app here: https://github.com/saithis/ZLogger/commit/3cb6d471ffcf67dac4efbfd3e2ec9602de0f930e Unfortunatelly I'm on vacation for 3 weeks starting in a few hours, so I won't be able to continue...