Log ASP.NET exceptions

This commit is contained in:
jvyden 2021-10-21 01:26:54 -04:00
commit 2005c64379
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278

View file

@ -24,6 +24,9 @@ namespace LBPUnion.ProjectLighthouse.Logging {
};
Logger.Log(state.ToString(), loggerLevel);
if(exception != null) {
Logger.Log(exception.ToString(), loggerLevel);
}
}
}
}