Skip to content

Commit

Permalink
Removing debug logs from setup and start functions (#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 <[email protected]>
  • Loading branch information
gbamparop and elasticmachine authored Sep 16, 2024
1 parent b89314e commit 4d692ad
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 4d692ad

Please sign in to comment.