Skip to content

Commit

Permalink
Removing debug logs from setup and start functions (elastic#192884)
Browse files Browse the repository at this point in the history
Removing debug logs from setup and start functions

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
  • Loading branch information
2 people authored and markov00 committed Sep 18, 2024
1 parent 7a6cce9 commit eab36aa
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ export class DatasetQualityServerPlugin implements Plugin {
core: CoreSetup<DatasetQualityPluginStartDependencies, DatasetQualityPluginStart>,
plugins: DatasetQualityPluginSetupDependencies
) {
this.logger.debug('dataset_quality: Setup');

const resourcePlugins = mapValues(plugins, (value, key) => {
return {
setup: value,
Expand Down Expand Up @@ -59,8 +57,6 @@ export class DatasetQualityServerPlugin implements Plugin {
}

start() {
this.logger.debug('dataset_quality: Started');

return {};
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ export class ObservabilityOnboardingPlugin
>,
plugins: ObservabilityOnboardingPluginSetupDependencies
) {
this.logger.debug('observability_onboarding: Setup');
this.esLegacyConfigService.setup(core.elasticsearch.legacy.config$);

core.savedObjects.registerType(observabilityOnboardingFlow);
Expand Down Expand Up @@ -109,8 +108,6 @@ export class ObservabilityOnboardingPlugin
}

public start(core: CoreStart) {
this.logger.debug('observability_onboarding: Started');

return {};
}

Expand Down

0 comments on commit eab36aa

Please sign in to comment.