Skip to content

Commit

Permalink
update logging
Browse files Browse the repository at this point in the history
Signed-off-by: Tianle Huang <tianleh@amazon.com>
  • Loading branch information
tianleh committed Feb 21, 2024
1 parent c3a387c commit d95b75c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/application_config/server/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export class ApplicationConfigPlugin
}

public async setup(core: CoreSetup) {
this.logger.debug('applicationConfig: Setup');
this.logger.info('applicationConfig: Setup');
const router = core.http.createRouter();

const config = await this.config$.pipe(first()).toPromise();
Expand All @@ -75,7 +75,7 @@ export class ApplicationConfigPlugin
}

public start(core: CoreStart) {
this.logger.debug('applicationConfig: Started');
this.logger.info('applicationConfig: Started');
return {};
}

Expand Down

0 comments on commit d95b75c

Please sign in to comment.