GriffinPlus.Lib.Logging
7.0.5
Requires NuGet 3.3 or higher.
dotnet add package GriffinPlus.Lib.Logging --version 7.0.5
NuGet\Install-Package GriffinPlus.Lib.Logging -Version 7.0.5
<PackageReference Include="GriffinPlus.Lib.Logging" Version="7.0.5" />
<PackageVersion Include="GriffinPlus.Lib.Logging" Version="7.0.5" />
<PackageReference Include="GriffinPlus.Lib.Logging" />
paket add GriffinPlus.Lib.Logging --version 7.0.5
#r "nuget: GriffinPlus.Lib.Logging, 7.0.5"
#addin nuget:?package=GriffinPlus.Lib.Logging&version=7.0.5
#tool nuget:?package=GriffinPlus.Lib.Logging&version=7.0.5
A simple, but modular extensible logging facility that focuses on applications built on the .NET framework.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 is compatible. 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 is compatible. 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 is compatible. 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. |
.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 is compatible. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 is compatible. 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. |
-
.NETFramework 4.6.1
- GriffinPlus.Lib.Common (>= 4.3.0 && < 5.0.0)
- GriffinPlus.Lib.Logging.Interface (>= 1.2.0 && < 2.0.0)
- System.Diagnostics.EventLog (>= 6.0.0)
- System.ValueTuple (>= 4.5.0)
-
.NETFramework 4.8
- GriffinPlus.Lib.Common (>= 4.3.0 && < 5.0.0)
- GriffinPlus.Lib.Logging.Interface (>= 1.2.0 && < 2.0.0)
- System.Diagnostics.EventLog (>= 9.0.2)
-
.NETStandard 2.0
- GriffinPlus.Lib.Common (>= 4.3.0 && < 5.0.0)
- GriffinPlus.Lib.Logging.Interface (>= 1.2.0 && < 2.0.0)
- System.Diagnostics.EventLog (>= 5.0.1)
-
net5.0
- GriffinPlus.Lib.Common (>= 4.3.0 && < 5.0.0)
- GriffinPlus.Lib.Logging.Interface (>= 1.2.0 && < 2.0.0)
- System.Diagnostics.EventLog (>= 6.0.0)
-
net6.0
- GriffinPlus.Lib.Common (>= 4.3.0 && < 5.0.0)
- GriffinPlus.Lib.Logging.Interface (>= 1.2.0 && < 2.0.0)
- System.Diagnostics.EventLog (>= 8.0.1)
-
net7.0
- GriffinPlus.Lib.Common (>= 4.3.0 && < 5.0.0)
- GriffinPlus.Lib.Logging.Interface (>= 1.2.0 && < 2.0.0)
- System.Diagnostics.EventLog (>= 8.0.1)
-
net8.0
- GriffinPlus.Lib.Common (>= 4.3.0 && < 5.0.0)
- GriffinPlus.Lib.Logging.Interface (>= 1.2.0 && < 2.0.0)
- System.Diagnostics.EventLog (>= 9.0.2)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on GriffinPlus.Lib.Logging:
Package | Downloads |
---|---|
GriffinPlus.Lib.Logging.LocalLogServicePipelineStage
A pipeline stage for the Griffin+ logging subsystem that forwards log messages to the local log service (proprietary, Windows only). |
|
GriffinPlus.Lib.Logging.Collections
Interfaces and in-memory implementation of a collection of log messages with filtering capabilities. The unfiltered collection and the filtered collection are fully data-binding capable and can be directly used from code that access collections via the IList/IList<T> interface and track changes via the interfaces INotifyCollectionChanged and INotifyPropertyChanged. An accessor allows accessing the filtered message set without filtering the entire message set in advance and is a better fit when processing large amounts of messages, but it does not support data binding (as the filtered collection does). A basic (also data-binding capable) filter is also part of the package. It allows to filter by timestamp and select from collections of process names/ids, application names, log writer names, log level names and tags. Items from these collections simply need to be selected to filter by them. A full-text search on the message text field is also supported. The filter can be used in conjunction with the filtered collection and the filtering accessor. |
|
GriffinPlus.Lib.Logging.LogFile
A log file for the Griffin+ logging subsystem working on a sqlite database. Includes a pipeline stage to integrate the log file into the Griffin+ logging subsystem. A collection with data-binding capabilities backed by the log file allows to access log files conveniently. A filtering accessor on top of the collection allows to access messages matching a specific filter. A data-binding capable filter is also part of the package. It allows to filter by timestamp and select from collections of process names/ids, application names, log writer names, log level names and tags. Items from these collections simply need to be selected to filter by them. A full-text search on the message text field is also supported. |
|
GriffinPlus.Lib.Logging.ElasticsearchPipelineStage
A pipeline stage for the Griffin+ logging subsystem that forwards log messages to an Elasticsearch cluster. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
7.0.5 | 194 | 3/1/2025 |
7.0.4 | 214 | 1/30/2025 |
7.0.3 | 609 | 9/2/2024 |
7.0.2 | 342 | 8/14/2024 |
7.0.1 | 317 | 7/2/2024 |
7.0.0 | 260 | 6/10/2024 |
6.1.0 | 730 | 1/30/2024 |
6.0.3 | 1,829 | 3/13/2023 |
6.0.2 | 1,116 | 3/10/2023 |
5.1.5 | 1,463 | 1/30/2023 |
5.1.4 | 1,715 | 11/23/2022 |
5.1.3 | 1,492 | 11/23/2022 |
5.1.2 | 2,060 | 9/2/2022 |
5.1.1 | 2,094 | 6/28/2022 |
5.1.0 | 2,510 | 4/7/2022 |
5.0.1 | 1,967 | 2/16/2022 |
5.0.0 | 2,047 | 2/3/2022 |
4.0.5 | 1,656 | 9/14/2021 |
4.0.4 | 1,475 | 9/7/2021 |
4.0.3 | 1,508 | 9/6/2021 |
4.0.2 | 1,399 | 9/3/2021 |
4.0.1 | 1,394 | 9/3/2021 |
4.0.0 | 1,389 | 9/1/2021 |
3.1.7 | 1,334 | 7/7/2021 |
3.1.5 | 1,258 | 7/6/2021 |
3.1.4 | 1,453 | 7/5/2021 |
3.1.3 | 1,297 | 4/20/2021 |
3.1.1 | 1,237 | 3/18/2021 |
3.1.0 | 1,322 | 2/15/2021 |
3.0.0 | 1,507 | 2/3/2021 |
2.3.0 | 1,585 | 11/14/2020 |
2.2.0 | 1,061 | 11/9/2020 |
2.1.10 | 994 | 10/12/2020 |