diff --git a/src/plugins/condition/Condition.js b/src/plugins/condition/Condition.js index 97ec1b0f6b..05f82cb9b0 100644 --- a/src/plugins/condition/Condition.js +++ b/src/plugins/condition/Condition.js @@ -110,7 +110,7 @@ export default class ConditionClass extends EventEmitter { */ addCriterion(criterionConfiguration) { let criterionConfigurationWithId = this.generateCriterion(criterionConfiguration || null); - console.log('condition class criterionConfigurationWithId', criterionConfigurationWithId ); + console.log('condition class addCriterion criterionConfigurationWithId', criterionConfigurationWithId ); let criterion = new TelemetryCriterion(criterionConfigurationWithId, this.openmct); criterion.on('criterionUpdated', (obj) => this.handleCriterionUpdated(obj)); criterion.on('criterionResultUpdated', (obj) => this.handleCriterionResult(obj)); @@ -141,7 +141,6 @@ export default class ConditionClass extends EventEmitter { updateCriterion(id, criterionConfiguration) { let found = this.findCriterion(id); if (found) { - console.log('updateCriterion found') const newcriterionConfiguration = this.generateCriterion(criterionConfiguration); let newCriterion = new TelemetryCriterion(newcriterionConfiguration, this.openmct); newCriterion.on('criterionUpdated', (obj) => this.handleCriterionUpdated(obj)); diff --git a/src/plugins/condition/components/Criterion.vue b/src/plugins/condition/components/Criterion.vue index 71cff9075d..d1a64bc9ee 100644 --- a/src/plugins/condition/components/Criterion.vue +++ b/src/plugins/condition/components/Criterion.vue @@ -16,9 +16,7 @@ -