diff options
author | Alan Pearce | 2024-04-12 10:21:58 +0200 |
---|---|---|
committer | Alan Pearce | 2024-04-12 10:21:58 +0200 |
commit | 9aba2856bca331d5283e527713a1e810cea3394e (patch) | |
tree | f7501486a882d340b8087d5172f2e8e111db5c37 /src | |
parent | a926b530d3c9dd12472b918c620d8bce84e96834 (diff) | |
download | website-9aba2856bca331d5283e527713a1e810cea3394e.tar.lz website-9aba2856bca331d5283e527713a1e810cea3394e.tar.zst website-9aba2856bca331d5283e527713a1e810cea3394e.zip |
Remove access logging
Diffstat (limited to 'src')
-rw-r--r-- | src/app.ts | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/app.ts b/src/app.ts index 934df05..06fe16d 100644 --- a/src/app.ts +++ b/src/app.ts @@ -284,13 +284,6 @@ export const server = { const seconds = endTimer(); metrics.requestDuration.observe(seconds); } - log.info( - request.method, - status, - hostname, - pathname, - newpath ? newpath : "", - ); if (autoSleep && pathname !== "/health") { keepAwake(); } |