fix incorrect error logging in ApPersonService

This commit is contained in:
Hazelnoot 2025-07-04 16:42:58 -04:00
parent ed68230811
commit ec44c44ca4

View file

@ -494,7 +494,7 @@ export class ApPersonService implements OnModuleInit, OnApplicationShutdown {
user = u as MiRemoteUser; user = u as MiRemoteUser;
publicKey = await this.userPublickeysRepository.findOneBy({ userId: user.id }); publicKey = await this.userPublickeysRepository.findOneBy({ userId: user.id });
} else { } else {
this.logger.error('Error creating Person:', e instanceof Error ? e : new Error(e as string)); this.logger.error(`Error creating Person: ${renderInlineError(e)}`);
throw e; throw e;
} }
} }
@ -776,7 +776,7 @@ export class ApPersonService implements OnModuleInit, OnApplicationShutdown {
return result; return result;
}) })
.catch(e => { .catch(e => {
this.logger.info(`Processing Move Failed @${updated.username}@${updated.host} (${uri})`, { stack: e }); this.logger.info(`Processing Move Failed @${updated.username}@${updated.host} (${uri}): ${renderInlineError(e)}`);
}); });
} }