diff --git a/homeassistant/config.py b/homeassistant/config.py index de0b1c3b1f8..c3fe18d69df 100644 --- a/homeassistant/config.py +++ b/homeassistant/config.py @@ -902,7 +902,7 @@ def async_notify_setup_error( part = f"[{name}]({link})" if link else name message += f" - {part}\n" - message += "\nPlease check your config." + message += "\nPlease check your config and [logs](/config/logs)." persistent_notification.async_create( hass, message, "Invalid config", "invalid_config" diff --git a/homeassistant/config_entries.py b/homeassistant/config_entries.py index 412bc2ea4d9..a7de2107ecd 100644 --- a/homeassistant/config_entries.py +++ b/homeassistant/config_entries.py @@ -564,7 +564,7 @@ class ConfigEntriesFlowManager(data_entry_flow.FlowManager): title="New devices discovered", message=( "We have discovered new devices on your network. " - "[Check it out](/config/integrations)" + "[Check it out](/config/integrations)." ), notification_id=DISCOVERY_NOTIFICATION_ID, ) @@ -573,7 +573,7 @@ class ConfigEntriesFlowManager(data_entry_flow.FlowManager): title="Integration requires reconfiguration", message=( "At least one of your integrations requires reconfiguration to " - "continue functioning. [Check it out](/config/integrations)" + "continue functioning. [Check it out](/config/integrations)." ), notification_id=RECONFIGURE_NOTIFICATION_ID, )