We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b22fab9 commit 954bc26Copy full SHA for 954bc26
server/src/app.ts
@@ -74,13 +74,13 @@ async function doPrimary() {
74
const settingsService = getFromContainer(SettingsService);
75
await settingsService.getSettings();
76
77
+ logger.info(`Petio v${appConfig.version} [debug] [pid:${PUID},gid:${PGID}]`);
78
+
79
// Create initial cache if it doesn't exist
80
logger.info('Updating cache with common resources');
81
const cacheService = getFromContainer(CacheService);
82
await cacheService.getCommonResources();
- logger.info('Cache finished updating');
-
83
- logger.info(`Petio v${appConfig.version} [debug] [pid:${PUID},gid:${PGID}]`);
+ logger.info('Finished updating cache with common resources');
84
85
// run workers
86
await getFromContainer(Master).runWorkers();
0 commit comments