TPJ.Logging 2.5.1.1

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

// Install TPJ.Logging as a Cake Tool
#tool nuget:?package=TPJ.Logging&version=2.5.1.1

TPJ Logging library - Easily Log errors into a log file and/or e-mail. Simple, light weight, easy to setup!

Product Compatible and additional computed target framework versions.
.NET Framework net452 is compatible.  net46 is compatible.  net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 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
4.0.0 288 1/28/2023
3.1.2 1,160 8/19/2017
3.1.1 996 8/16/2017
3.0.0 922 8/15/2017
2.5.1.1 905 8/14/2017
2.5.1 954 7/12/2017
2.5.0 1,107 3/21/2017
2.2.3 1,204 10/28/2016
2.1.1 1,224 8/26/2016
1.1.3 1,619 4/19/2016

V2.5.0 is still only supporting full .net 4.5.2, 4.6, and 4.6.1. This version cleans up the code getting it ready for .NETstandard 2.0. Once .NETStandard 2.0 is released this packaged will be updated to run using this. More detailed Examples will follow then.
ASP.Net Core full framework (4.5.2 4.6 4.6.1) Website / WebAPI Set up using both E-mail and Log file.

Within  appsettings.json and add the following

{
 "TPJ": {
   "Logging": {
     "ApplicationName": "",
     "Error":{
       "LogType": "",
       "LogFileDirectory": "",
       "Email":{
         "To": "",
         "From": "",
         "SmtpClient": "",
         "SmtpUser": "",
         "SmtpPassword": "",
         "Port": "",
         "EnableSSL": ""
       }
     }
   }
 }
}

ApplicationName – (Required) Name of the application used on the log file names and e-mails

ErrorLogType – (Required) There are three types of error log types
             1) Email - Errors are sent via e-mail only (as per rest of the config settings)
             2) LogFile - Errors are logged in a txt file (named – ‘[{Environment}] {Application Name} Error Log.txt’)
             3) EmailLogFile - Does both Email and LogFile

LogFileDirectory - (Required for log file logging) The location at which the log / error file will be placed

To - (Required for e-mail logging) Error e-mails sent to; Can be a list split by ';' E.G "Test@test.com;Test2@test.com"

From - (Required for e-mail logging) E-mails are sent from this account

SmtpClient – (Required for e-mail logging) SMTP server which e-mails will be sent from

SmtpUser - (Not required) send e-mail using the given user name and password

SmtpPassword - (Not required) send e-mail using the given user name and password

Port - (Not required) port to send from

EnableSSL - (Not required) enable SSL when sending the e-mail

Example appsettings.json setup using Gmail to send error e-mails –
{
 "TPJ": {
   "Logging": {
     "ApplicationName": "Test Application",
     "Error":{
       "LogType": "EmailLogFile",
       "LogFileDirectory": "C:\Logging",
       "Email":{
         "To": "test@test.com",
         "From": "test@gmail.com ",
         "SmtpClient": "smtp.gmail.com",
         "SmtpUser": "test@gmail.com",
         "SmtpPassword": "testPassword",
         "Port": "587",
         "EnableSSL": "true"
       }
     }
   }
 }
}

Once appsettings.json is done open StartUp.cs file and go to ConfigureServices


var logSettings = new TPJ.Logging.Models.ErrorLogSettings(Configuration);
services.Configure< TPJ.Logging.Models.ErrorLogSettings>(options =>
{
   options.ApplicationName = logSettings.ApplicationName;
   options.LogType = loggSettings. LogType;
   options.LogFileDirectory = loggSettings.LogFileDirectory;
   options.EmailTo = loggSettings.EmailTo;
   options.EmailFrom = loggSettings.EmailFrom;
   options.SmtpClient = loggSettings.SmtpClient;
   options.SmtpUser = loggSettings.SmtpUser;

   options.SmtpPassword = loggSettings.SmtpPassword;
   options.Port = loggSettings.Port;
   options.EnableSSL= loggSettings.EnableSSL;
});
services.AddSingleton< TPJ.Logging.IErrorLogger, TPJ.Logging.ErrorLogger>();


Then using DI within asp.net core you can call IErrorLogger like so

private readonly TPJ.Logging.IErrorLogger _errorLogger;

public HomeController(TPJ.Logging.IErrorLogger logger)
{
 _errorLogger = errorLogger;
}

Then within an IActionResult you might have this

public IActionResult About(Divide divide)
{
 try
 {
    var divideByZero = divide.ValueOne / divide.ValueTwo;
     return View();
 }
 catch (Exception e)
 {
     _logger.Log(System.Reflection.MethodBase.GetCurrentMethod(), e, divide);
     return RedirectToAction(nameof(Error));
 }
}

This will then log the error with the current method information, the exception details and the details of the object ‘divide’ – it will log nested classes within objects.