From 6d735b571a6f5c8612b0ae036b334ca841e22d8e Mon Sep 17 00:00:00 2001 From: Donavan Becker Date: Sat, 30 Dec 2023 23:09:22 -0600 Subject: [PATCH] Update platform.ts --- src/platform.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/platform.ts b/src/platform.ts index e14d52f..138b338 100644 --- a/src/platform.ts +++ b/src/platform.ts @@ -136,8 +136,10 @@ export class CloudflaredTunnelPlatform implements DynamicPlatformPlugin { this.log.warn(`Starting Tunnel with Options: ${JSON.stringify(options)}`); let tunnel: Tunnel | undefined; if (this.config.startTunnelAuto) { + this.log.info('Starting Tunnel in Auto Install Mode'); tunnel = await startTunnelAuto(options); } else { + this.log.info('Starting Tunnel in Manual Install Mode'); tunnel = await startTunnel(options); } this.log.info('Waiting 5 minute for tunnel to install and start');