aryabin-logger 1.0.2

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

// Install aryabin-logger as a Cake Tool
#tool nuget:?package=aryabin-logger&version=1.0.2

logger

Lightwaight and ease to use logger for .Net

This project has been made as attempt to create logger which could be used out of the box. I mean something like Plug and Play - without difficult configuration and thinking about files location.

How to initialize

There are two ways to initialize Logger. Initialization using custom string. In this case Logger's name will be equal to used string.

ILogger Log = Logger.Logger.GetLogger("ConsoleAppDotNetSample");

Initialization using any object. In this case Logger's name will be equal to type name of used object.

ILogger Log = Logger.Logger.GetLogger(this);
ILogger Log = Logger.Logger.GetLogger(anyObject);

This second way also could be simplified using Logger.Extensions namespace

using Logger.Extensions;
ILogger Log = anyObject.GetLogger();
ILogger Log = this.GetLogger();

Default configuration

{
  "Level": 3,
  "File": {
    "Path": "<Location of your application>\\<Name of your application>.log",
    "Size": 53687091200,
    "Count": 5,
    "BufferSize": 65536
  },
  "Message": {
    "DateTimeFormat": "yyyy-MM-dd HH:mm:ss.fff",
    "Delimeter": "\t",
    "MethodEnterMessage": "+", // 
    "MethodExitMessage": "-"
  },
  "Handler": {
    "Delay": 500
  }
}

Contacts

Please contact Alexander Ryabinin if you would share any feedback or suggestion. I would be appreciate it.

Telegram: https://t.me/ryabinin_alex

License

Logger is licensed under the MIT license.

Product 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.0 243 2/15/2023
1.0.4 271 2/11/2023
1.0.3 238 2/11/2023
1.0.2 268 1/31/2023
1.0.1 311 12/7/2022
1.0.0 428 10/4/2022