Skip to content

Commit a9ad5df

Browse files
committed
Move HTTP access logging hook to from core to roarr module
1 parent eddca7e commit a9ad5df

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed

src/hooks.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import {
22
checkMandatoryPrivateEnvVarsHandle,
3-
httpLogHandle,
43
maintenanceModeHandle,
54
} from '$lib/server/core/hooks';
65
import { addAuthDataToLocalHandle } from '$lib/server/lucia/hooks';
@@ -16,6 +15,7 @@ import { setSentryUserIdentity } from '$lib/server/sentry/hooks';
1615
import { posthog, setupNodePosthogClient } from '$lib/server/posthog';
1716
import { getServerSentryIntegrations } from '$lib/server/sentry/utils';
1817
import { roarr } from '$lib/server/roarr';
18+
import { httpLogHandle } from '$lib/server/roarr/hooks';
1919

2020
setupNodePosthogClient(config.posthog.projectApiKey, config.posthog.apiHost);
2121
setupSentryClient({

src/lib/server/core/hooks/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
export * from './check-mandatory-private-env-vars.handle';
22
export * from './maintenance-mode.handle';
3-
export * from './http-log.handle';
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './http-log.handle';

0 commit comments

Comments
 (0)