-
Type:
Improvement
-
Resolution: Done
-
Priority:
Unknown
-
None
-
Affects Version/s: None
-
Component/s: Logging
Context
Add logging statement when SRV polling fails. Currently we silence any SRV errors. This should only be visible in debug mode of our standardized logging. See below for an example of how the logging should be added.
except Exception as exc: # As per the spec, upon encountering an error: # - An error must not be raised # - SRV records must be rescanned every heartbeatFrequencyMS # - Topology must be left unchanged self.request_check()
+ _debug_log(_SDAM_LOGGER, message="SRV monitor check failed", failure=repr(exc)) return None
Acceptance Criteria
Add this condition to our standardized logging.