The RS EasyExceptionHandling helper library developed by Mr. Ravinder Singh (ਰਵਿੰਦਰ ਸਿੰਘ), it helps you to manage error handling in your ASP.Net Core Web API or Web Site. So no need to write code for error loging for your project. The library supports ASP.NET Core 6 for now.
- ASP.Net Core 6 error tracking in the SQLite database
- Send an error notification to the team
Requirements Requires .NET 6.0.
Following Nuget packages
- Microsoft.EntityFrameworkCore
- Microsoft.EntityFrameworkCore.Sqlite
Run the following command to install the package using the .NET CLI:
dotnet add package RSEasyExceptionHandler Alternatively, from the Package Manager Console or Developer PowerShell, run the following command to install the latest version:
Install-Package RSEasyExceptionHandler Alternatively, use the NuGet Package Manager for Visual Studio or the NuGet window for JetBrains Rider, then search for Twilio.AspNet.Core and install the package.
-
Open Program.cs class and regester AddRS_ErrorHandlingMiddleware Dependency near builder.Services.AddSwaggerGen();
builder.Services.AddRS_ErrorHandlingMiddleware();
-
Note: Devloper can set own database name and location in the project. 1st create a folder like "Databaes" at root folder and then set "Data Source=database\RSAppErrorsLog.db" like following
builder.Services.AddRS_ErrorHandlingMiddleware("Data Source=database\\MyAppErrorsLog.db");
-
Next add following code lines in Program.cs near app.Run();
RSDependencyInjection.SetupLogDataBase(app.Services.CreateScope()); app.UseMiddleware<RS_ErrorHandlingMiddleware>();
-
Add SMTP Settings in appsettings.json
"RSError_EmailSenderSMTP": { "Host": "smtp-host.sendinblue.com", "Port": 587, "EnableSSL": true, "Username": "login email address", "Password": "password", "TL_Emails": "", //Team Lead or Project Manager emails (CC) "Dev_Emails": "ravinder25886@gmail.com", //Development team emails(TO) "enable_error_notification": false // true= will send mail and false mean off mailing }
We have developed very user friendly library so that developers can read error log without any hard work.
-
For read create a API controller and past following code. Now, you can show error log in your front end.
[Route("api/[controller]")] [ApiController] public class ErrorLogController : ControllerBase { private readonly IErrorLogService _errorLogService; public ErrorLogController(IErrorLogService errorLogService) { _errorLogService = errorLogService; } [HttpGet(Name = "GetErrorLog")] public async Task<IActionResult> Get([FromQuery] PaginationFilter filter) { return Ok(await _errorLogService.GetListAsync(filter)); } }
Delete log functions
[HttpPost] [Route("DeleteAll")] public async Task<IActionResult> DeleteAll(CancellationToken cancellationToken) { return Ok(await _errorLogCommandsService.DeleteAllAsync(cancellationToken)); } [HttpDelete("{id}")] public async Task<IActionResult> DeleteAll(Guid id, CancellationToken cancellationToken) { return Ok(await _errorLogCommandsService.DeleteByIdAsync(id, cancellationToken)); }
If this package is help full to you, then please share this package with your developer's friends. Moroeover, if you want to share your comment then please use following chanels:-
I am a senior programmer with good knowledge of both front-end and back-end techniques(FULL STACK).