error log

This commit is contained in:
Daniel Balk
2023-04-03 19:51:29 +02:00
parent b6ef64a766
commit 5b807a667d
4 changed files with 37 additions and 8 deletions

View File

@@ -94,7 +94,7 @@ public class IdentityService
}
catch (Exception e)
{
await ErrorLogService.Log(e);
await ErrorLogService.Log(e, x => {});
return null;
}
@@ -130,7 +130,7 @@ public class IdentityService
}
catch (Exception e)
{
await ErrorLogService.Log(e);
await ErrorLogService.Log(e, x => {});
return null;
}
}