I can see that ABP logs all errors in the log.txt file in the but wonder if there is any tutorial that explains how to add ELMAH to the Boilerplate template?
I am using Asp core + Angular template. I have already installed Elmah to my solution but not quite sure how to integrate AbpHandledExceptionData
with it.
Here are my settings:
//ELMAH
services.AddElmahIo(o =>
{
o.ApiKey = _appConfiguration["Authentication:Elmah:APIKey"];
o.LogId = new Guid(_appConfiguration["Authentication:Elmah:LogId"]);
});