EggEgg.CSharp-Logger 2.2.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package EggEgg.CSharp-Logger --version 2.2.1
NuGet\Install-Package EggEgg.CSharp-Logger -Version 2.2.1
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="EggEgg.CSharp-Logger" Version="2.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EggEgg.CSharp-Logger --version 2.2.1
#r "nuget: EggEgg.CSharp-Logger, 2.2.1"
#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.
// Install EggEgg.CSharp-Logger as a Cake Addin
#addin nuget:?package=EggEgg.CSharp-Logger&version=2.2.1

// Install EggEgg.CSharp-Logger as a Cake Tool
#tool nuget:?package=EggEgg.CSharp-Logger&version=2.2.1

csharp-logger

A bussy but convenient C# Logger implement.
You can download it on nuget.org by searching EggEgg.CSharp-Logger.

NuGet

Update

v2.2.0

  • Obsoleted the is_Debug_LogLevel config paramter.
    Use Global_Minimum_LogLevel and Console_Minimum_LogLevel instead. You can now control logging output better by them.
  • Added Verbose and None LogLevel. Log.Verb is avaliable now.
  • Other bugfix and improvements.

Features

  • Common logger implements
    Usage: Firstly Log.Initialize(LoggerConfig), then Log.Info(content, sender), Log.Erro(...), Log.Warn(...), Log.Dbug(...).
  • Color output Support
    Just add xml tags in text, like:<color=Red>Output as red color</color>.
    The Color value should be a valid value in ConsoleColor, e.g. "Red", "Green".
    Recognized color tags will be removed in the log file.
  • Command Line Support
    if you wants to read the user's input while outputing logs parallel (e.g. making a command line program), ConsoleWrapper is provided.
    You can set the value of ConsoleWrapper.InputPrefix as a waiting-input prefix, just like mysql> or ubuntu ~$ , and use ConsoleWrapper.ReadLineAsync to read inputs from the user.
    _Notice that it will impact the performance when the user's input is very large. It's disabled as default, and you can enable it by LoggerConfig(use_Console_Wrapper: true).
  • Output amount limit
    Large infomation outputing can severely impact the performance. You can set the maximum output amount per line by LoggerConfig.Max_Output_Char_Count.
    You can also disable this by setting it to -1.
  • Auto compress logs
    If there're logs created 1 day ago, they will be compressed into a zip file like logs.[Date].zip.
Product Compatible and additional computed target framework versions.
.NET 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.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
4.0.2 273 12/22/2023
4.0.1 318 11/6/2023
4.0.0 335 9/23/2023
3.0.0 318 7/13/2023
2.2.3 293 6/9/2023
2.2.2 187 5/31/2023
2.2.1 196 5/6/2023
2.1.4 244 4/15/2023
2.1.3 203 4/15/2023
2.1.2 199 4/9/2023
2.1.1 201 4/9/2023
2.1.0 216 4/8/2023
2.0.1 205 4/8/2023
2.0.0 249 4/8/2023

Changes in v2.2.0
- Obsoleted the `is_Debug_LogLevel` config paramter.
Use `Global_Minimum_LogLevel` and `Console_Minimum_LogLevel` instead. You can now control logging output better by them.
- Added `Verbose` and `None` LogLevel. `Log.Verb` is avaliable now.
- Other bugfix and improvements.