Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion appdaemon/state.py
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,9 @@ async def add_entity(
) -> None:
"""Adds an entity to the internal state registry and fires the ``__AD_ENTITY_ADDED`` event"""
if self.entity_exists(namespace, entity):
self.logger.warning("%s already exists, will not be adding it", entity)
# No warning is necessary because this method gets called twice for the app entities because of
# create_initial_threads and then again during start_app
# self.logger.warning("%s already exists, will not be adding it", entity)
return

state = {
Expand Down
Loading