Sentry.Extensions.Logging 0.0.1-preview2

Prefix Reserved
This is a prerelease version of Sentry.Extensions.Logging.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Sentry.Extensions.Logging --version 0.0.1-preview2
                    
NuGet\Install-Package Sentry.Extensions.Logging -Version 0.0.1-preview2
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Sentry.Extensions.Logging" Version="0.0.1-preview2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Sentry.Extensions.Logging" Version="0.0.1-preview2" />
                    
Directory.Packages.props
<PackageReference Include="Sentry.Extensions.Logging" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Sentry.Extensions.Logging --version 0.0.1-preview2
                    
#r "nuget: Sentry.Extensions.Logging, 0.0.1-preview2"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Sentry.Extensions.Logging&version=0.0.1-preview2&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Sentry.Extensions.Logging&version=0.0.1-preview2&prerelease
                    
Install as a Cake Tool

Integration of Microsoft.Extensions.Logging with Sentry

By default, LogError or LogCritical by will send an event to Sentry.

Log messages of level Information or higher will be kept as breadcrumbs and if an event is sent, all breadcrumbs from that transaction are included.

These levels can be configured so that the level you define, tracks breadcrumbs, sends events or completely disable it.

That means that log mesages logged by you or the framework, related to the failed transaction, will be added to the event!

Sample:


 using (var loggerFactory = new LoggerFactory()
            .AddConsole(LogLevel.Trace)
            .AddSentry(o =>
            {
                // Initialize the SDK, alternative to relying on previously called: `using(SentrySdk.Init)`:
                // this is useful when Logging is the first or is the only integration enabled:
                o.Init(i =>
                {
                    i.Dsn = new Dsn("https://5fd7a6cda8444965bade9ccfd3df9882@sentry.io/1188141");
                    i.MaxBreadcrumbs = 150; // Increasing from default 100
                });

                // Optionally configure options: The default values are:
                o.MinimumBreadcrumbLevel = LogLevel.Information; // It requires at least this level to store breadcrumb
                o.MinimumEventLevel = LogLevel.Error; // This level or above will result in event sent to Sentry
            }))
        {
            var logger = loggerFactory.CreateLogger<Program>();

            logger.LogTrace("1 - By *default* this log level is ignored by Sentry.");

            logger.LogInformation("2 - Information messages are stored as Breadcrumb, sent with the next event.");

            logger.LogError("3 - This generates an event, captured by sentry and includes breadcrumbs (2) tracked in this transaction.");

            using (logger.BeginScope(new Dictionary<string, string>
                {
                    {"A", "some value"},
                    {"B", "more value"},
                }))
            {
                logger.LogWarning("4 - Breadcrumb that only exists inside this scope");

                logger.LogError("5 - An event that includes the scoped key-value (A, B) above and also the breadcrumbs: (2, 4) and event (3)");
            }
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (15)

Showing the top 5 NuGet packages that depend on Sentry.Extensions.Logging:

Package Downloads
Sentry.AspNetCore

Official ASP.NET Core integration for Sentry - Open-source error tracking that helps developers monitor and fix crashes in real time.

DisCatSharp

DisCatSharp Your library to write discord bots in C# with a focus on always providing access to the latest discord features. Written with love and for everyone.

Sentry.Maui

Official MAUI integration for Sentry - Open-source error tracking that helps developers monitor and fix crashes in real time.

Sentry.Azure.Functions.Worker

Official Azure Functions Worker SDK integration for Sentry - Open-source error tracking that helps developers monitor and fix crashes in real time.

Fsel.Core

Fsel Core Package

GitHub repositories (9)

Showing the top 9 popular GitHub repositories that depend on Sentry.Extensions.Logging:

Repository Stars
DGP-Studio/Snap.Hutao
实用的开源多功能原神工具箱 🧰 / Multifunctional Open-source Genshin Impact Toolkit 🧰
bitfoundation/bitplatform
Build all of your apps using what you already know and love ❤️
ClassIsland/ClassIsland
一款适用于班级多媒体屏幕的课表信息显示工具,可以一目了然地显示各种信息。
getcellm/cellm
Use LLMs in Excel formulas
benaclejames/VRCFaceTracking
OSC App to allow VRChat avatars to interact with eye and facial tracking hardware
ShokoAnime/ShokoServer
Repository for Shoko Server.
ingen084/KyoshinEewViewerIngen
Custom client for Kyoshin Monitor
Aiko-IT-Systems/DisCatSharp
Your library to write discord apps in C# with focus on always providing access to the latest discord features
RedpointGames/uet
UET (Unreal Engine Tool) makes building and testing Unreal Engine projects and plugins easy. It can distribute builds with BuildGraph, remotely execute automation tests on device and across multiple machines, handles fault tolerance and automatic retries and generally makes the whole experience of automating Unreal Engine a lot more pleasant.
Version Downloads Last Updated
5.11.2 5,997 6/25/2025
5.11.1 10,262 6/21/2025
5.11.0 7,442 6/19/2025
5.11.0-alpha.3 231 6/13/2025
5.11.0-alpha.1 261 6/7/2025
5.10.0 72,851 6/6/2025
5.9.0 33,865 5/30/2025
5.8.2-beta.1 137 5/29/2025
5.8.1 20,773 5/27/2025
5.8.0 46,057 5/21/2025
5.8.0-alpha.0 125 5/22/2025
5.7.0 70,672 5/13/2025
5.7.0-beta.0 1,070 5/2/2025
5.6.0 174,639 4/24/2025
5.5.1 205,517 4/8/2025
5.5.0 72,236 4/2/2025
5.4.0 233,088 3/15/2025
5.3.0 132,098 3/7/2025
5.2.0 161,419 2/26/2025
5.1.1 245,635 2/13/2025
5.1.0 282,562 2/3/2025
5.0.1 1,388,991 1/8/2025
5.0.0 481,619 12/19/2024
5.0.0-alpha.1 9,886 11/25/2024
5.0.0-alpha.0 99 11/24/2024
4.13.0 1,553,990 11/5/2024
4.12.2 56,308 11/2/2024
4.12.1 684,827 10/10/2024
4.12.1-segv1 331 11/1/2024
4.12.0 289,307 10/2/2024
4.11.0 398,922 9/22/2024
4.10.2 675,046 8/21/2024
4.10.1 112,879 8/16/2024
4.10.0 47,400 8/14/2024
4.9.0 1,058,437 7/11/2024
4.9.0-sync.collection.2 209 7/30/2024
4.9.0-sync.collection.1 94 7/30/2024
4.8.1 223,623 7/2/2024
4.8.0 204,490 6/26/2024
4.7.0 832,165 5/27/2024
4.6.2 382,818 5/14/2024
4.6.1 9,744 5/14/2024
4.6.0 90,516 5/9/2024
4.5.0 259,707 4/30/2024
4.4.0 459,853 4/12/2024
4.3.0 40,694 4/10/2024
4.2.1 654,815 3/12/2024
4.2.0 37,320 3/11/2024
4.1.2 719,064 2/20/2024
4.1.1 107,800 2/14/2024
4.1.0 138,007 2/9/2024
4.0.3 26,770 2/7/2024
4.0.2 33,670 2/6/2024
4.0.1 31,313 2/5/2024
4.0.0 90,930 2/1/2024
4.0.0-beta.9 408 1/30/2024
4.0.0-beta.8 13,077 1/11/2024
4.0.0-beta.7 7,279 1/5/2024
4.0.0-beta.6 14,882 12/13/2023
4.0.0-beta.5 1,492 12/12/2023
4.0.0-beta.4 4,371 12/5/2023
4.0.0-beta.3 395 12/2/2023
4.0.0-beta.2 2,515 11/23/2023
4.0.0-beta.1 339 11/19/2023
4.0.0-beta.0 245 11/17/2023
4.0.0-alpha.0 3,057 11/9/2023
3.41.4 1,022,179 1/23/2024
3.41.3 1,248,404 11/29/2023
3.41.2 166,003 11/23/2023
3.41.1 59,744 11/22/2023
3.41.0 418,279 11/8/2023
3.40.1 596,220 10/12/2023
3.40.0 58,467 10/10/2023
3.40.0-beta.0 7,465 9/21/2023
3.39.1 570,071 9/12/2023
3.39.0 92,283 9/7/2023
3.38.0 7,579 9/6/2023
3.37.0 5,161 9/6/2023
3.36.0 295,844 8/22/2023
3.35.1 118,415 8/16/2023
3.35.0 101,600 8/8/2023
3.34.0 785,079 7/13/2023
3.33.1 759,234 6/13/2023
3.33.0 844,373 5/22/2023
3.32.0 13,474 5/22/2023
3.31.0 574,818 5/2/2023
3.30.0 445,134 4/11/2023
3.29.1 990,448 3/11/2023
3.29.0 140,291 3/6/2023
3.28.1 753,285 2/10/2023
3.28.0 54,715 2/8/2023
3.27.1 149,256 2/3/2023
3.27.0 83,537 2/1/2023
3.26.2 270,737 1/24/2023
3.26.1 192,573 1/17/2023
3.26.0 187,241 1/13/2023
3.25.0 749,950 12/23/2022
3.24.1 245,638 12/16/2022
3.24.0 1,440,697 11/18/2022
3.23.1 502,541 10/31/2022
3.23.0 45,922 10/27/2022
3.22.0 960,212 10/7/2022
3.21.0 1,103,178 9/2/2022
3.20.1 1,305,558 7/26/2022
3.20.0 59,060 7/22/2022
3.19.0 564,666 6/28/2022
3.18.0 251,044 6/15/2022
3.17.1 868,866 5/8/2022
3.17.0 102,082 5/3/2022
3.16.0 556,555 4/7/2022
3.15.0 643,086 3/15/2022
3.14.1 461,226 2/18/2022
3.14.0 137,782 2/14/2022
3.13.0 936,680 1/11/2022
3.12.3 353,744 12/19/2021
3.12.2 76,551 12/15/2021
3.12.1 239,501 12/6/2021
3.12.0 167,500 11/23/2021
3.12.0-alpha.1 4,687 11/7/2021
3.11.1 502,476 11/5/2021
3.11.0 146,792 11/2/2021
3.10.0 368,645 10/15/2021
3.9.4 404,617 9/29/2021
3.9.3 82,502 9/21/2021
3.9.2 114,715 9/10/2021
3.9.1 6,515 9/9/2021
3.9.0 173,681 8/27/2021
3.8.3 397,288 7/25/2021
3.8.2 74,036 7/17/2021
3.8.1 10,706 7/15/2021
3.8.0 113,720 7/14/2021
3.7.0 71,115 7/10/2021
3.6.1 126,750 7/2/2021
3.6.0 144,460 6/23/2021
3.6.0-alpha.2 701 6/18/2021
3.6.0-alpha.1 514 6/11/2021
3.5.0 327,978 6/7/2021
3.4.0 65,045 5/31/2021
3.4.0-beta.0 298 5/27/2021
3.3.5-beta.0 2,526 5/13/2021
3.3.4 502,671 4/26/2021
3.3.3 5,250 4/23/2021
3.3.2 21,950 4/23/2021
3.3.1 350,564 4/5/2021
3.3.0 30,178 4/3/2021
3.2.0 53,591 3/26/2021
3.1.0 324,821 3/10/2021
3.0.8 46,004 3/4/2021
3.0.7 119,772 2/20/2021
3.0.6 64,127 2/14/2021
3.0.5 44,923 2/9/2021
3.0.4 16,050 2/8/2021
3.0.3 53,057 2/3/2021
3.0.2 20,003 2/3/2021
3.0.1 94,006 1/29/2021
3.0.0 42,429 1/28/2021
3.0.0-beta.0 803 1/20/2021
3.0.0-alpha.11 484 1/15/2021
3.0.0-alpha.10 1,733 1/10/2021
3.0.0-alpha.9 2,023 12/29/2020
3.0.0-alpha.8 952 12/25/2020
3.0.0-alpha.7 2,958 12/16/2020
3.0.0-alpha.6 2,207 11/30/2020
3.0.0-alpha.5 3,457 11/21/2020
3.0.0-alpha.4 2,067 11/2/2020
3.0.0-alpha.3 358 10/29/2020
3.0.0-alpha.2 479 10/21/2020
3.0.0-alpha.1 438 10/16/2020
3.0.0-alpha.0 1,053 9/25/2020
2.2.0-alpha 2,033 9/19/2020
2.1.8 1,189,994 11/21/2020
2.1.6 1,186,276 8/20/2020
2.1.5 269,747 7/27/2020
2.1.5-beta 3,724 6/30/2020
2.1.4 397,860 6/25/2020
2.1.3 560,178 6/5/2020
2.1.2-beta5 4,863 5/19/2020
2.1.2-beta4 2,683 5/12/2020
2.1.2-beta3 1,717 5/7/2020
2.1.2-beta2 19,993 4/16/2020
2.1.2-beta 3,814 3/31/2020
2.1.1 1,008,205 3/19/2020
2.1.0 452,377 2/24/2020
2.0.3 147,862 2/12/2020
2.0.2 23,116 2/8/2020
2.0.1 96,807 1/28/2020
2.0.0 14,763 1/28/2020
2.0.0-beta8 22,981 1/15/2020
2.0.0-beta7 158,415 12/17/2019
2.0.0-beta6 100,471 10/31/2019
2.0.0-beta5 6,689 10/29/2019
2.0.0-beta4 71,763 9/4/2019
2.0.0-beta3 15,498 7/26/2019
2.0.0-beta2 4,358 6/9/2019
2.0.0-beta 2,629 6/4/2019
1.2.1-beta 1,367 5/27/2019
1.2.0 1,581,843 5/23/2019
1.1.3-beta4 1,541 5/15/2019
1.1.3-beta3 1,245 5/13/2019
1.1.3-beta2 2,804 3/28/2019
1.1.3-beta 4,185 2/11/2019
1.1.2 417,444 1/16/2019
1.1.2-beta 2,569 1/8/2019
1.1.1 17,210 1/5/2019
1.1.0 70,846 12/5/2018
1.0.1-beta5 1,852 12/5/2018
1.0.1-beta4 2,436 12/3/2018
1.0.1-beta3 14,255 11/15/2018
1.0.1-beta2 2,342 11/14/2018
1.0.1-beta 17,120 10/24/2018
1.0.0 210,184 10/2/2018
1.0.0-rc2 22,009 9/7/2018
1.0.0-rc 5,059 8/24/2018
0.0.1-preview5 5,917 8/5/2018
0.0.1-preview4 4,354 7/30/2018
0.0.1-preview3 5,917 7/17/2018
0.0.1-preview2 5,477 7/3/2018
0.0.1-preview1 2,041 6/28/2018