ExtremelySimpleLogger 1.2.5
See the version list below for details.
dotnet add package ExtremelySimpleLogger --version 1.2.5
NuGet\Install-Package ExtremelySimpleLogger -Version 1.2.5
<PackageReference Include="ExtremelySimpleLogger" Version="1.2.5" />
<PackageVersion Include="ExtremelySimpleLogger" Version="1.2.5" />
<PackageReference Include="ExtremelySimpleLogger" />
paket add ExtremelySimpleLogger --version 1.2.5
#r "nuget: ExtremelySimpleLogger, 1.2.5"
#:package ExtremelySimpleLogger@1.2.5
#addin nuget:?package=ExtremelySimpleLogger&version=1.2.5
#tool nuget:?package=ExtremelySimpleLogger&version=1.2.5

ExtremelySimpleLogger is a very simple logger for .NET programs.
To set up an extremely simple logger, add a reference to the NuGet package to your project file. Remember to change the VERSION to the most recent one.
<ItemGroup>
<PackageReference Include="ExtremelySimpleLogger" Version="VERSION" />
</ItemGroup>
Next, you have to create an instance of the Logger class:
var logger = new Logger {
Name = "My Logger",
Sinks = {
new FileSink("Log.txt", append: true),
new ConsoleSink()
}
};
Since there are multiple ways for logging data to be processed, the logger needs to receive a set of Sink instances. By default, the following sinks are available:
FileSink, which outputs logging data to a fileConsoleSink, which outputs logging data to the default consoleDirectorySink, which outputs logging data to a set of files and automatically manages how many old logs are keptStringSink, which stores logging data in a string
There are multiple ways to easily log messages with your newly created logger:
// Logging info
logger.Log(LogLevel.Info, "Some information");
logger.Info("Some information, but shorter");
// Logging exceptions
try {
// some dangerous code
} catch (Exception e) {
logger.Error("An exception was thrown", e);
}
For more information, you can also check out the sample.
| Product | Versions 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. |
-
.NETStandard 2.0
- No dependencies.
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.4.1 | 11,668 | 12/1/2023 |
| 1.4.0 | 235 | 12/1/2023 |
| 1.3.3 | 261 | 11/30/2023 |
| 1.3.2 | 226 | 11/30/2023 |
| 1.3.1 | 1,842 | 5/8/2023 |
| 1.3.0 | 680 | 10/5/2022 |
| 1.2.5 | 824 | 1/17/2022 |
| 1.2.4 | 583 | 11/4/2021 |
| 1.2.3 | 603 | 7/14/2021 |
| 1.2.2 | 560 | 7/14/2021 |
| 1.2.1 | 723 | 8/19/2020 |
| 1.2.0 | 726 | 7/29/2020 |
| 1.1.0 | 717 | 7/23/2020 |
| 1.0.0 | 736 | 7/23/2020 |