Skip to content

Commit

Permalink
Update platform.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
donavanbecker committed Dec 23, 2023
1 parent 805acd3 commit 80734d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/platform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ export class NoIPPlatform implements DynamicPlatformPlugin {
config!: NoIPPlatformConfig;

constructor(log: Logging, config: NoIPPlatformConfig, api: API) {
this.logs();
this.debugLog(`Finished initializing platform: ${config.name}`);
this.accessories = [];
this.api = api;
this.log = log;
Expand All @@ -41,6 +39,8 @@ export class NoIPPlatform implements DynamicPlatformPlugin {
refreshRate: config.refreshRate as number,
logging: config.logging as string,
};
this.logs();
this.debugLog(`Finished initializing platform: ${config.name}`);

// verify the config
try {
Expand Down

0 comments on commit 80734d4

Please sign in to comment.