From b68b984de62e2e826bcd9d1c0f83fee579fc5ebd Mon Sep 17 00:00:00 2001 From: Koen Kanters Date: Thu, 10 Nov 2022 17:45:48 +0100 Subject: [PATCH] Log `Zigbee2MQTT started!` on startup. https://github.com/Koenkk/zigbee2mqtt/issues/14283 --- lib/controller.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/controller.ts b/lib/controller.ts index c102e8af..6f6ab05c 100644 --- a/lib/controller.ts +++ b/lib/controller.ts @@ -163,6 +163,8 @@ export class Controller { this.eventBus.onLastSeenChanged(this, (data) => utils.publishLastSeen(data, settings.get(), false, this.publishEntityState)); + + logger.info(`Zigbee2MQTT started!`); } @bind async enableDisableExtension(enable: boolean, name: string): Promise {