Skip to content

Commit

Permalink
build(deps): bump Exceptionless from 4.8.0 to 5.0.0 in /src (#987)
Browse files Browse the repository at this point in the history
* build(deps): bump Exceptionless from 4.8.0 to 5.0.0 in /src

Bumps [Exceptionless](https://github.com/exceptionless/Exceptionless.Net) from 4.8.0 to 5.0.0.
- [Release notes](https://github.com/exceptionless/Exceptionless.Net/releases)
- [Commits](exceptionless/Exceptionless.Net@v4.8.0...v5.0.0)

---
updated-dependencies:
- dependency-name: Exceptionless
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* remove processqueue call

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: David Vreony <dpvreony@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and dpvreony authored Feb 6, 2023
1 parent 714aeeb commit 8919ede
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions src/Splat.Exceptionless/ExceptionlessSplatLogger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ public void Write(Exception exception, string message, Type type, LogLevel logLe
private void CreateLog(string type, string message, global::Exceptionless.Logging.LogLevel level)
{
_exceptionlessClient.SubmitLog(type, message, level);
_exceptionlessClient.ProcessQueue();
}

private void CreateLog(Exception exception, string message, global::Exceptionless.Logging.LogLevel level) => CreateLog(exception, _sourceType, message, level);
Expand All @@ -132,8 +131,6 @@ private void CreateLog(Exception exception, string type, string message, global:
level)
.SetException(exception)
.Submit();

_exceptionlessClient.ProcessQueue();
}

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion src/Splat.Exceptionless/Splat.Exceptionless.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Exceptionless" Version="4.8.0" />
<PackageReference Include="Exceptionless" Version="5.0.0" />
<PackageReference Include="System.Collections.Immutable" Version="7.0.0" />
</ItemGroup>

Expand Down

0 comments on commit 8919ede

Please sign in to comment.