[backend/core] Don't log AuthFetchExceptions in GetUpdatedUser
This commit is contained in:
parent
672bf57f19
commit
5ba2e47426
1 changed files with 1 additions and 1 deletions
|
@ -266,7 +266,7 @@ public class UserResolver(
|
|||
{
|
||||
if (e is TimeoutException)
|
||||
logger.LogDebug("UpdateUserAsync timed out for user {user}", user.Uri);
|
||||
else
|
||||
else if (e is not AuthFetchException { Message: "The remote user no longer exists." })
|
||||
logger.LogError("UpdateUserAsync for user {user} failed with {error}", user.Uri, e.Message);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue