Skip to content

Commit

Permalink
Relaxed the log level for the navigation service
Browse files Browse the repository at this point in the history
It is hard to see anything when starting the app in debug mode.
Clients are free to adjust the log level in the launch configs:
Use `--log-level=trace`.

Signed-off-by: Akos Kitta <kittaakos@typefox.io>
  • Loading branch information
Akos Kitta authored and kittaakos committed Jan 31, 2020
1 parent a920c01 commit a89f340
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ export class NavigationLocationService {
}

private async debug(message: string | (() => string)): Promise<void> {
this.logger.debug(typeof message === 'string' ? message : message());
this.logger.trace(typeof message === 'string' ? message : message());
}

private get stackDump(): string {
Expand Down

0 comments on commit a89f340

Please sign in to comment.