fix: Fix URL in startup failed bailout message (#25339)

Co-authored-by: Ricc68 <Ricc68@local>
This commit is contained in:
Ricc68
2024-12-28 13:59:50 +01:00
committed by GitHub
parent 62e18a65f3
commit bcec40f84a
+3 -1
View File
@@ -143,7 +143,9 @@ export class Controller {
this.eventBus.onAdapterDisconnected(this, this.onZigbeeAdapterDisconnected);
} catch (error) {
logger.error('Failed to start zigbee-herdsman');
logger.error('Check https://www.zigbee2mqtt.io/guide/installation/20_zigbee2mqtt-fails-to-start.html for possible solutions');
logger.error(
'Check https://www.zigbee2mqtt.io/guide/installation/20_zigbee2mqtt-fails-to-start_crashes-runtime.html for possible solutions',
);
logger.error('Exiting...');
logger.error((error as Error).stack!);