We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f015dda commit 3eb102aCopy full SHA for 3eb102a
1 file changed
hello/advertizer.py
@@ -94,7 +94,7 @@ def _handle_message(self, message: dict[str, Any]) -> None:
94
def _handle_query(self, matcher: ServiceMatcher, service: Service) -> None:
95
if matcher.matches(service):
96
delay = round(self._max_delay * random.random(), 3)
97
- self.log.info('Responding to query', group=self._group, query=matcher.query, delay=delay)
+ self.log.debug('Responding to query', group=self._group, query=matcher.query, delay=delay)
98
time.sleep(delay)
99
self.advertise(service, DEBUG)
100
0 commit comments