mirror of
https://github.com/immich-app/immich.git
synced 2025-03-01 15:11:21 +01:00
chore: log listen address (#3428)
This commit is contained in:
parent
1c5926553a
commit
f3edf43158
2 changed files with 2 additions and 2 deletions
|
@ -31,5 +31,5 @@ export async function bootstrap() {
|
||||||
const server = await app.listen(port);
|
const server = await app.listen(port);
|
||||||
server.requestTimeout = 30 * 60 * 1000;
|
server.requestTimeout = 30 * 60 * 1000;
|
||||||
|
|
||||||
logger.log(`Immich Server is listening on ${port} [v${SERVER_VERSION}] [${envName}] `);
|
logger.log(`Immich Server is listening on ${await app.getUrl()} [v${SERVER_VERSION}] [${envName}] `);
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,5 +17,5 @@ export async function bootstrap() {
|
||||||
await app.get(AppService).init();
|
await app.get(AppService).init();
|
||||||
await app.listen(port);
|
await app.listen(port);
|
||||||
|
|
||||||
logger.log(`Immich Microservices is listening on ${port} [v${SERVER_VERSION}] [${envName}] `);
|
logger.log(`Immich Microservices is listening on ${await app.getUrl()} [v${SERVER_VERSION}] [${envName}] `);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue