From 960941b5379fc3f3a65b2ed2f9d821f0a11625b3 Mon Sep 17 00:00:00 2001 From: Northern Man <19808920+NorthernMan54@users.noreply.github.com> Date: Fri, 6 Dec 2024 12:27:41 -0500 Subject: [PATCH] Update platformAccessory.ts --- src/platformAccessory.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/platformAccessory.ts b/src/platformAccessory.ts index 3d76012..cdd872a 100644 --- a/src/platformAccessory.ts +++ b/src/platformAccessory.ts @@ -36,7 +36,6 @@ export class ExamplePlatformAccessory { // This is only required when using Custom Services and Characteristics not support by HomeKit this.service = this.accessory.getService(this.platform.CustomServices[accessory.context.device.CustomService]) || this.accessory.addService(this.platform.CustomServices[accessory.context.device.CustomService]); - this.platform.log.debug('this.service', this.service); } else { this.service = this.accessory.getService(this.platform.Service.Lightbulb) || this.accessory.addService(this.platform.Service.Lightbulb); }