log error

This commit is contained in:
xiaolipro 2025-10-14 09:51:53 +08:00
parent e8f03f80c2
commit 498605fce0

View File

@ -7,6 +7,8 @@ public class ExceptionNotifier: IExceptionNotifier, ITransientDependency
{
public Task NotifyAsync(ExceptionNotificationContext context)
{
LogHelper.Error(context.Exception.ToString());
return Task.CompletedTask;
}
}