From: Guillaume Abrioux Date: Wed, 28 Jan 2026 12:05:04 +0000 (+0100) Subject: node-proxy: reduce log verbosity for missing optional fields X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=007f33c5b92245f4e741dc0bfc00b80bdcdc088a;p=ceph.git node-proxy: reduce log verbosity for missing optional fields Change missing field logging from warning to debug level in RedfishDellSystem, as missing optional fields can be expected behavior and and doesn't require warning level logging. Fixes: https://tracker.ceph.com/issues/74749 Signed-off-by: Guillaume Abrioux --- diff --git a/src/ceph-node-proxy/ceph_node_proxy/redfishdellsystem.py b/src/ceph-node-proxy/ceph_node_proxy/redfishdellsystem.py index 8a478fe32f6..8d611e2148b 100644 --- a/src/ceph-node-proxy/ceph_node_proxy/redfishdellsystem.py +++ b/src/ceph-node-proxy/ceph_node_proxy/redfishdellsystem.py @@ -25,7 +25,7 @@ class RedfishDellSystem(BaseRedfishSystem): try: result[to_snake_case(field)] = data[field] except KeyError: - self.log.warning(f'Could not find field: {field} in data: {data}') + self.log.debug(f'Could not find field: {field} in data: {data}') result[to_snake_case(field)] = None return result