UtilityPack.Logger
1.1.8
dotnet add package UtilityPack.Logger --version 1.1.8
NuGet\Install-Package UtilityPack.Logger -Version 1.1.8
<PackageReference Include="UtilityPack.Logger" Version="1.1.8" />
paket add UtilityPack.Logger --version 1.1.8
#r "nuget: UtilityPack.Logger, 1.1.8"
// Install UtilityPack.Logger as a Cake Addin #addin nuget:?package=UtilityPack.Logger&version=1.1.8 // Install UtilityPack.Logger as a Cake Tool #tool nuget:?package=UtilityPack.Logger&version=1.1.8
Logger
Logger provides a single static class, with several static methods that take care of performing rapid writing of files to disk in predefined places.
Enum LogLocation
- ROOT
C:/ - CUSTOM
Custom Path - EXEDIR
../exe_directory/ - PROGDATA
C:/ProgramData/ - APPDATAROAM
../AppData/Roaming - APPDATALOCA
../AppData/Local
Class Logger
Property
IsLogActive : bool
Only if set to 'true' the Logger methods will actually save files to disk. (Default true)IsCatchErrorActive : bool
If true, when an error occur it will be thrown, otherwhise the functions will silently return false. (Default false)BasePath : string
Root directory where to save the logs. (Default same directory as the exe)SubPath : string
Additional sub directories where save the logs, added at the end of BasePath. (Default "")MaxFileSize : long
Max size of a log file, if the file exceed this value and "IsSizeLimitActive" is set to true, the file will be cleared. (Default value = 5 MB = 1048576 Byte)IsSizeLimitActive : boolean
If set to true, when a file exceed the "MaxFileSize" it will be cleared at the next log saving.LogAppendSpace : int
Number of new line beetween a content append and the next one. (Default 3)
Method
SetLocation(LogLocation location, string? customDir)
Set the log save locationSetSubLocation(string subLocation)
Set the log folder sub locationSetMaxFileSize(long maxByteSize)
Activate the size limit control and set the "MaxFileSize" value to as pecific numberSaveText(string text, string? name , bool? append)
Save some text to file in the log directory as a file .txtSaveJson(string text, string? name , bool? append)
Save some json text to file in the log directory as a file .jsonSaveJson(object text, string? name , bool? append)
Save a json object to file in the log directory as a file .jsonSaveJsonList< T >(List< T > list, string? name , bool? append)
Save a list of json objects to file in the log directory as a file .jsonClearLogFolder(string? chosenPath)
Delete every file inside the log folder, if another folder BasePath is specified, clear it instead
Example
class jsonObj
{
public string Name;
public int Age;
}
static void Main()
{
// Set the main log folder location
Logger.SetLocation(LogLocation.APPDATALOCA, "ProgramLogs");
// Save a simple text message on a report.txt file located in the log folder
Logger.SaveText("Report message", "report");
// Create and append a json like object to a report_data.json file located in the log folder
jsonObj json = new()
{
Name = "Burt",
Age = 20
};
Logger.SaveJson(json, "report_data", true);
}
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. |
.NET Core | netcoreapp3.0 is compatible. netcoreapp3.1 was computed. |
-
.NETCoreApp 3.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.1.8 | 462 | 6/30/2022 |
1.1.7 | 419 | 5/31/2022 |
1.1.6 | 419 | 5/16/2022 |
1.1.5 | 418 | 5/16/2022 |
1.1.4 | 428 | 5/16/2022 |
1.1.3 | 426 | 3/29/2022 |
1.1.2 | 441 | 2/17/2022 |
1.1.1 | 434 | 2/17/2022 |
1.1.0 | 440 | 2/4/2022 |
1.0.3 | 436 | 2/4/2022 |
1.0.2.2 | 435 | 2/4/2022 |
1.0.2.1 | 421 | 2/4/2022 |
1.0.2 | 265 | 12/30/2021 |
1.0.1 | 268 | 12/29/2021 |
1.0.0 | 295 | 11/17/2021 |