Currently, the timestamp attachment is not formatted and is just written as DateTimeOffset.ToString(), which is depending on the culture of the current thread.
new Field{Title = "Timestamp", Value = logEvent.Timestamp.ToString(), Short = _options.DefaultAttachmentsShortFormat}
Would it be possible to add support for custom timestamp attachment formats, so you can use any format you like, without having to rely on the current machine culture?
Currently, the timestamp attachment is not formatted and is just written as
DateTimeOffset.ToString()
, which is depending on the culture of the current thread.https://github.com/mgibas/serilog-sinks-slack/blob/master/Serilog.Sinks.Slack/SlackSink.cs#L89
Would it be possible to add support for custom timestamp attachment formats, so you can use any format you like, without having to rely on the current machine culture?