Skip to content

Commit 954bc26

Browse files
committed
chore(server): reworded updating cache message on startup
1 parent b22fab9 commit 954bc26

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

server/src/app.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ async function doPrimary() {
7474
const settingsService = getFromContainer(SettingsService);
7575
await settingsService.getSettings();
7676

77+
logger.info(`Petio v${appConfig.version} [debug] [pid:${PUID},gid:${PGID}]`);
78+
7779
// Create initial cache if it doesn't exist
7880
logger.info('Updating cache with common resources');
7981
const cacheService = getFromContainer(CacheService);
8082
await cacheService.getCommonResources();
81-
logger.info('Cache finished updating');
82-
83-
logger.info(`Petio v${appConfig.version} [debug] [pid:${PUID},gid:${PGID}]`);
83+
logger.info('Finished updating cache with common resources');
8484

8585
// run workers
8686
await getFromContainer(Master).runWorkers();

0 commit comments

Comments
 (0)