Skip to content

Commit

Permalink
fix: Fix URL in startup failed bailout message (#25339)
Browse files Browse the repository at this point in the history
Co-authored-by: Ricc68 <Ricc68@local>
  • Loading branch information
Ricc68 and Ricc68 authored Dec 28, 2024
1 parent 62e18a6 commit bcec40f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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!);

Expand Down

0 comments on commit bcec40f

Please sign in to comment.