We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 31f527d + 265d289 commit 5ad17ffCopy full SHA for 5ad17ff
appdaemon/state.py
@@ -538,7 +538,9 @@ async def add_entity(
538
) -> None:
539
"""Adds an entity to the internal state registry and fires the ``__AD_ENTITY_ADDED`` event"""
540
if self.entity_exists(namespace, entity):
541
- 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
542
+ # create_initial_threads and then again during start_app
543
+ # self.logger.warning("%s already exists, will not be adding it", entity)
544
return
545
546
state = {
0 commit comments