Skip to content

Commit 8223f95

Browse files
authored
Don't log GET /api requests/responses (#21)
1 parent 3374cf2 commit 8223f95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/routes/api/get.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export default async (fastify) => {
2-
fastify.get('/', async () => {
2+
fastify.get('/', { logLevel: 'silent' }, async () => {
33
return
44
})
55
}

0 commit comments

Comments
 (0)