FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

rootdevelop/Exceptional.Core: Lite implementation of MS SQL Exception logger for ASP.Net Core (based on StackExchange.Exceptional) · GitHub

Repository files navigation

Exceptional.Core

Lite implementation of MS SQL Exception logger for ASP.Net Core (based on StackExchange.Exceptional)

To implement add the following in Startup.cs:

 Exceptional.Core.ErrorStore.Setup(new SQLErrorStore("applicationname","your connection string here"));

 var globalExceptionFilter = new GlobalExceptionFilter {RollupPerServer = false};

 services.AddMvc(config =>
 {
     config.Filters.Add(globalExceptionFilter);
 });

Please note this is highly experimental and lacking a lot of features. Just a quick hack to get basic exception logging working!

Original Exception logger source: https://github.com/NickCraver/StackExchange.Exceptional

About

Lite implementation of MS SQL Exception logger for ASP.Net Core (based on StackExchange.Exceptional)

Topics

Resources

Stars

2 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages


Back | FazBrowse Home | New Git URL