Skip to content

Commit

Permalink
include base in init message if it is not empty.
Browse files Browse the repository at this point in the history
  • Loading branch information
jifalops committed Nov 18, 2024
1 parent b3f4402 commit 2b56fdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ export const app = new App(
: new TelemetryServiceMock()
);

log.info(performance.now(), `Initialized ${base}.`);
log.info(performance.now(), base ? `Initialized at ${base}.` : 'Initialized.');

0 comments on commit 2b56fdf

Please sign in to comment.