diff options
Diffstat (limited to 'server')
-rw-r--r-- | server/helpers/logger.ts | 4 | ||||
-rw-r--r-- | server/initializers/config.ts | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/server/helpers/logger.ts b/server/helpers/logger.ts index 81b0dfaaa..f35ef5e9f 100644 --- a/server/helpers/logger.ts +++ b/server/helpers/logger.ts | |||
@@ -10,10 +10,6 @@ import { LOG_FILENAME } from '../initializers/constants' | |||
10 | 10 | ||
11 | const label = CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT | 11 | const label = CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT |
12 | 12 | ||
13 | // Create the directory if it does not exist | ||
14 | // FIXME: use async | ||
15 | mkdirpSync(CONFIG.STORAGE.LOG_DIR) | ||
16 | |||
17 | function getLoggerReplacer () { | 13 | function getLoggerReplacer () { |
18 | const seen = new WeakSet() | 14 | const seen = new WeakSet() |
19 | 15 | ||
diff --git a/server/initializers/config.ts b/server/initializers/config.ts index e20efe02c..cab60a61f 100644 --- a/server/initializers/config.ts +++ b/server/initializers/config.ts | |||
@@ -6,7 +6,6 @@ import { VideoRedundancyConfigFilter } from '@shared/models/redundancy/video-red | |||
6 | import { BroadcastMessageLevel } from '@shared/models/server' | 6 | import { BroadcastMessageLevel } from '@shared/models/server' |
7 | import { VideosRedundancyStrategy } from '../../shared/models' | 7 | import { VideosRedundancyStrategy } from '../../shared/models' |
8 | import { NSFWPolicyType } from '../../shared/models/videos/nsfw-policy.type' | 8 | import { NSFWPolicyType } from '../../shared/models/videos/nsfw-policy.type' |
9 | // Do not use barrels, remain constants as independent as possible | ||
10 | import { buildPath, parseBytes, parseDurationToMs, root } from '../helpers/core-utils' | 9 | import { buildPath, parseBytes, parseDurationToMs, root } from '../helpers/core-utils' |
11 | 10 | ||
12 | // Use a variable to reload the configuration if we need | 11 | // Use a variable to reload the configuration if we need |