mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-23 10:53:09 +02:00
refactor
This commit is contained in:
parent
9771f1c435
commit
c01731f091
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||||
|
|
Loading…
Reference in a new issue