Logger_dotNET 1.0.1
Logger is a framework for logging .NET applications.
Can be used to log the output for different targets, like logging output in a text file, Database, Console, Mail (SMTP), Remote, and others.
Install-Package Logger_dotNET -Version 1.0.1
dotnet add package Logger_dotNET --version 1.0.1
<PackageReference Include="Logger_dotNET" Version="1.0.1" />
paket add Logger_dotNET --version 1.0.1
#r "nuget: Logger_dotNET, 1.0.1"
Logger is a framework for logging .NET applications.
Can be used to log the output for different targets, like logging output in a text file, Database, Console, Mail (SMTP), Remote, and others.
Example:
class Program
{
private static readonly Logger log = Logger.GetLogger();
static void Main(string[] args)
{
// Logger
log.Info("MachineName: " + System.Environment.MachineName);
log.Info("Testing information log");
log.Debug("Testing Debug log");
log.Fatal("Testing Fatal log");
log.Error("Testing Fatal log");
}
}
Logger is a framework for logging .NET applications.
Can be used to log the output for different targets, like logging output in a text file, Database, Console, Mail (SMTP), Remote, and others.
Example:
class Program
{
private static readonly Logger log = Logger.GetLogger();
static void Main(string[] args)
{
// Logger
log.Info("MachineName: " + System.Environment.MachineName);
log.Info("Testing information log");
log.Debug("Testing Debug log");
log.Fatal("Testing Fatal log");
log.Error("Testing Fatal log");
}
}
Release Notes
Awesome application logging utility.
Dependencies
This package has no dependencies.
Used By
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.