This commit is contained in:
syuilo 2023-09-29 13:41:09 +09:00
parent 9771f1c435
commit c01731f091

View file

@ -728,8 +728,8 @@ export class ClientServerService {
fastify.setErrorHandler(async (error, request, reply) => { fastify.setErrorHandler(async (error, request, reply) => {
const errId = randomUUID(); const errId = randomUUID();
this.clientLoggerService.logger.error(`Internal error occurred in ${request.routerPath}: ${error.message}`, { this.clientLoggerService.logger.error(`Internal error occurred in ${request.routeOptions.url}: ${error.message}`, {
path: request.routerPath, path: request.routeOptions.url,
params: request.params, params: request.params,
query: request.query, query: request.query,
code: error.name, code: error.name,