ExtremelySimpleLogger 1.4.1
dotnet add package ExtremelySimpleLogger --version 1.4.1
NuGet\Install-Package ExtremelySimpleLogger -Version 1.4.1
<PackageReference Include="ExtremelySimpleLogger" Version="1.4.1" />
paket add ExtremelySimpleLogger --version 1.4.1
#r "nuget: ExtremelySimpleLogger, 1.4.1"
// Install ExtremelySimpleLogger as a Cake Addin #addin nuget:?package=ExtremelySimpleLogger&version=1.4.1 // Install ExtremelySimpleLogger as a Cake Tool #tool nuget:?package=ExtremelySimpleLogger&version=1.4.1
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 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. |
.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 | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. 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. |
-
.NETFramework 4.5
- No dependencies.
-
.NETStandard 2.0
- No dependencies.
-
net8.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 | 4,723 | 12/1/2023 |
1.4.0 | 141 | 12/1/2023 |
1.3.3 | 145 | 11/30/2023 |
1.3.2 | 131 | 11/30/2023 |
1.3.1 | 1,650 | 5/8/2023 |
1.3.0 | 500 | 10/5/2022 |
1.2.5 | 620 | 1/17/2022 |
1.2.4 | 372 | 11/4/2021 |
1.2.3 | 383 | 7/14/2021 |
1.2.2 | 342 | 7/14/2021 |
1.2.1 | 480 | 8/19/2020 |
1.2.0 | 499 | 7/29/2020 |
1.1.0 | 478 | 7/23/2020 |
1.0.0 | 491 | 7/23/2020 |