Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Lancaster committed Nov 16, 2018
2 parents 9b947fe + 3a730cf commit 7f7732a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Description>A Sentry sink for Serilog</Description>
<VersionPrefix>2.3.0</VersionPrefix>
<VersionPrefix>2.4.0</VersionPrefix>
<Authors>Oleg Shevchenko</Authors>
<TargetFrameworks>net451;netstandard2.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down
4 changes: 2 additions & 2 deletions src/Serilog.Sinks.Sentry/SentrySink.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class SentrySink : ILogEventSink
/// <param name="dataScrubber">
/// An <see cref="IScrubber"/> implementation for cleaning up the data sent to Sentry
/// </param>
/// <param name="logger">The sentry logger.</param>
/// <param name="logger">The name of the logger used by Sentry.</param>
/// <exception cref="ArgumentException">Value cannot be null or whitespace. - dsn</exception>
public SentrySink(
IFormatProvider formatProvider,
Expand All @@ -51,7 +51,7 @@ public class SentrySink : ILogEventSink
string tags,
IJsonPacketFactory jsonPacketFactory,
ISentryUserFactory sentryUserFactory,
ISentryRequestFactory sentryRequestFactory,
ISentryRequestFactory sentryRequestFactory,
IScrubber dataScrubber,
string logger)
{
Expand Down
5 changes: 2 additions & 3 deletions src/Serilog.Sinks.Sentry/SentrySinkExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public static class SentrySinkExtensions
/// <param name="sentryUserFactory">The sentry user factory.</param>
/// <param name="sentryRequestFactory">The sentry request factory.</param>
/// <param name="dataScrubber">An <see cref="IScrubber"/> implementation for cleaning up logs before sending to Sentry</param>
/// <param name="logger">The sentry logger.</param>
/// <param name="logger">The name of the logger used by Sentry.</param>
/// <returns>
/// The logger configuration.
/// </returns>
Expand All @@ -44,8 +44,7 @@ public static class SentrySinkExtensions
ISentryUserFactory sentryUserFactory = null,
ISentryRequestFactory sentryRequestFactory = null,
IScrubber dataScrubber = null,
string logger = null
)
string logger = null)
{
return loggerConfiguration.Sink(
new SentrySink(
Expand Down
2 changes: 1 addition & 1 deletion src/Serilog.Sinks.Sentry/Serilog.Sinks.Sentry.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Description>A Sentry sink for Serilog</Description>
<VersionPrefix>2.3.0</VersionPrefix>
<VersionPrefix>2.4.0</VersionPrefix>
<Authors>Oleg Shevchenko</Authors>
<TargetFrameworks>net45;netstandard2.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down

0 comments on commit 7f7732a

Please sign in to comment.