Skip to content

Commit

Permalink
Merge pull request #44 from joerunde/debug-logs
Browse files Browse the repository at this point in the history
🔇 turn down DNS failure log
  • Loading branch information
gabe-l-hart committed Nov 21, 2023
2 parents 2a01838 + 38bb2f4 commit 53ab63d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion caikit_tgis_backend/load_balancing_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,11 @@ def _dns_poll(self):

self._ip_set = new_ip_set
except (socket.gaierror, socket.herror):
log.warning("Failed to poll DNS for updates", exc_info=True)
log.debug3(
"Failed to poll DNS for updates to service: %s",
self.target,
exc_info=True,
)

except Exception as ex: # pylint: disable=broad-exception-caught
log.warning(
Expand Down

0 comments on commit 53ab63d

Please sign in to comment.