Skip to content

Commit

Permalink
Make discarded events during init info instead of warning
Browse files Browse the repository at this point in the history
  • Loading branch information
acockburn committed Sep 8, 2024
1 parent 76a3d06 commit 8fb2328
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appdaemon/threading.py
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,7 @@ async def dispatch_worker(self, name, args):
state = await self.AD.state.get_state("_threading", "admin", entity_id)

if state in ["initializing"]:
self.logger.warn("Incoming event while initializing - discarding")
self.logger.info("Incoming event while initializing - discarding")
return

unconstrained = True
Expand Down

0 comments on commit 8fb2328

Please sign in to comment.