We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/serilog/serilog-sinks-file/blob/dev/src/Serilog.Sinks.File/Sinks/File/FileSink.cs#L59
The built-in Encoding.UTF8 object is problematic because it emits the byte order mark not otherwise required or expected in UTF-8 encoded files.
Encoding.UTF8
This should instead be a:
static readonly Encoding DefaultUtf8 = new UTF8Encoding(false);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/serilog/serilog-sinks-file/blob/dev/src/Serilog.Sinks.File/Sinks/File/FileSink.cs#L59
The built-in
Encoding.UTF8
object is problematic because it emits the byte order mark not otherwise required or expected in UTF-8 encoded files.This should instead be a:
The text was updated successfully, but these errors were encountered: