Matt Cole
Matt Cole
I have noticed this when using elasticmq. Sending a message with attributes directly to the queue does work, but not via sns.
Actually it is working. [Raw message delivery](https://docs.aws.amazon.com/sns/latest/dg/SNSMessageAttributes.html) must be enabled. You have to add the following to your subscription json: ```json "subscriptionAttributes": { "RawMessageDelivery": "true" } ```
No problem, let me know when you're happy with the changes.
Some minor feedback before we merge this. I just had a look a quick look at how [Serilog does this](https://github.com/whir1/serilog-sinks-graylog/blob/master/src/Serilog.Sinks.Graylog.Core/Transport/Tcp/TcpTransportClient.cs). They check `TcpClient.Connected` rather than catching `IOException` which is a...
If you wouldn't mind removing `GelfLoggerOptions.ThrowTcpExceptions`, I can get this merged for you.
Thanks this looks great, I was hoping someone would add TCP support. Should be able to give this a quick review and merge early next week.
Added in #69.
Thanks for the information, I might try `resolvconf` or `openresolv` if I'm feeling brave, but it isn't much hassle updating `/etc/resolv.conf` myself as a work around.
I would also like to have the option to exclude covered windows. I'd be willing to contribute this feature, but I've never worked on an extension and can't find much...
This library is one of [many 3rd party providers](https://learn.microsoft.com/en-us/dotnet/core/extensions/logging-providers#third-party-logging-providers) for Microsoft.Extensions.Logging that all work in a similar way. To answer your questions: - Logging is of course async and there...