Skip to content

Commit

Permalink
fix: add missing comma, silent is not a valid loglevel, log only erro…
Browse files Browse the repository at this point in the history
…rs instead
  • Loading branch information
Daniel Kopp committed Nov 11, 2022
1 parent 991d68a commit a8ec568
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/remote-cache/routes/get-status.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const getStatus: RouteOptions<
method: 'GET',
url: '/artifacts/status',
schema: statusRouteSchema,
logLevel: 'silent'
logLevel: 'error',
async handler(req, reply) {
reply.send({ status: 'enabled' })
},
Expand Down

0 comments on commit a8ec568

Please sign in to comment.