Itmo.Dev.Platform.Logging
1.2.348
Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Itmo.Dev.Platform.Logging --version 1.2.348
NuGet\Install-Package Itmo.Dev.Platform.Logging -Version 1.2.348
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="Itmo.Dev.Platform.Logging" Version="1.2.348" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Itmo.Dev.Platform.Logging" Version="1.2.348" />
<PackageReference Include="Itmo.Dev.Platform.Logging" />
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 Itmo.Dev.Platform.Logging --version 1.2.348
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Itmo.Dev.Platform.Logging, 1.2.348"
#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.
#:package Itmo.Dev.Platform.Logging@1.2.348
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Itmo.Dev.Platform.Logging&version=1.2.348
#tool nuget:?package=Itmo.Dev.Platform.Logging&version=1.2.348
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Itmo.Dev.Platform.Common
Package contains methods to connect Serilog and Sink to Sentry.
Usage example:
builder.AddPlatformSentry();
builder.Host.AddPlatformSerilog(builder.Configuration);
// ...
var app = builder.Build();
app.UseRouting();
// UsePlatformSentryTracing should be placed right after UseRouting middleware
app.UsePlatformSentryTracing(builder.Configuration);
Sentry application settings example:
{
"Sentry": {
"Enabled": true,
"Environment": "Production",
"Dsn": "",
"Debug": false,
"TracesSampleRate": 1.0,
"MinimumEventLevel": "Warning"
}
}
Serilog application settings example:
{
"Serilog": {
"Using": [
"Serilog.Sinks.Console",
"Serilog.Sinks.File"
],
"MinimumLevel": {
"Default": "Verbose",
"Override": {
"Microsoft.Hosting.Lifetime": "Information",
"Microsoft.AspNetCore": "Warning",
"Microsoft.EntityFrameworkCore": "Warning",
"Grpc.AspNetCore.Server.Model.Internal": "Information"
}
},
"WriteTo": [
{
"Name": "Console",
"Args": {
"outputTemplate": "{Timestamp:T} [{Level:u3}] {SourceContext} {Message}{NewLine}{Exception}"
}
},
{
"Name": "File",
"Args": {
"path": "Serilogs/${ApplicationName}/AppLogs_.log",
"rollingInterval": "Day",
"outputTemplate": "{Timestamp:o} [{Level:u3}] {SourceContext} {Message}{NewLine}{Exception}",
"retainedFileCountLimit": 30
}
}
]
}
}
N.B.
Don't forget to add required Sinks:
- Serilog.Sinks.Console
- Serilog.Sinks.File
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- Sentry.AspNetCore (>= 5.16.0)
- Sentry.AspNetCore.Grpc (>= 5.16.0)
- Sentry.Serilog (>= 5.16.0)
- Serilog (>= 4.3.0)
- Serilog.AspNetCore (>= 9.0.0)
- Serilog.Settings.Configuration (>= 9.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 1.2.352 | 0 | 2/28/2026 | |
| 1.2.350 | 0 | 2/28/2026 | |
| 1.2.348 | 0 | 2/28/2026 | |
| 1.2.308 | 271 | 10/9/2025 | |
| 1.2.296 | 195 | 10/5/2025 | |
| 1.2.275 | 166 | 5/10/2025 | |
| 1.2.271 | 136 | 5/10/2025 | |
| 1.2.228 | 213 | 10/31/2024 | |
| 1.2.206 | 187 | 10/30/2024 | |
| 1.2.204 | 267 | 10/29/2024 | |
| 1.2.202 | 222 | 10/29/2024 | |
| 1.1.196 | 198 | 10/29/2024 | |
| 1.1.193 | 197 | 10/29/2024 | |
| 1.1.190 | 241 | 10/26/2024 | |
| 1.0.174 | 215 | 10/25/2024 | |
| 1.0.133 | 202 | 10/25/2024 | |
| 1.0.132 | 227 | 10/24/2024 | |
| 1.0.131 | 206 | 10/24/2024 | |
| 1.0.130 | 212 | 10/24/2024 | |
| 1.0.129 | 214 | 10/24/2024 |
Loading failed
Itmo.Dev.Platform