Skip to content

Commit

Permalink
Merge pull request #63 from evilpilaf/eol
Browse files Browse the repository at this point in the history
Fix End_Of_Line
  • Loading branch information
evilpilaf authored Jan 31, 2021
2 parents 7ced0e2 + 02efc14 commit 6a38fdc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
9 changes: 8 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
* text eol=lf
* text eol=lf

# Declare files that will always have CRLF line endings on checkout.
*.sln text eol=crlf

# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
Binary file modified assets/icon124x124.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 0 additions & 2 deletions src/Honeycomb.Serilog.Sink/HoneycombSerilogSink.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,7 @@ public async Task EmitBatchAsync(IEnumerable<LogEvent> events)
await SendBatchedEvents(writer!.ToString()).ConfigureAwait(false);
}

// ReSharper disable UnusedMember.Local
private async Task SendBatchedEvents(Stream events)
// ReSharper restore UnusedMember.Local
{
using var requestMessage = new HttpRequestMessage(HttpMethod.Post, string.Format(HoneycombBatchEndpointTemplate, _teamId))
{
Expand Down

0 comments on commit 6a38fdc

Please sign in to comment.