From 007f33c5b92245f4e741dc0bfc00b80bdcdc088a Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Wed, 28 Jan 2026 13:05:04 +0100 Subject: [PATCH] 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 --- src/ceph-node-proxy/ceph_node_proxy/redfishdellsystem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.3