From 9f34c67bfa85017715ac75122f843ea18b4bc288 Mon Sep 17 00:00:00 2001 From: Christoffer Martinsson Date: Thu, 23 Oct 2025 18:56:16 +0200 Subject: [PATCH] Fix debug log reference to removed underlying_devices field --- agent/src/collectors/disk.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/agent/src/collectors/disk.rs b/agent/src/collectors/disk.rs index 225a31a..f226aea 100644 --- a/agent/src/collectors/disk.rs +++ b/agent/src/collectors/disk.rs @@ -113,8 +113,8 @@ impl DiskCollector { }); debug!( - "Storage pool '{}' ({}) at {} with {} underlying drives", - fs_config.name, fs_config.storage_type, fs_config.mount_point, fs_config.underlying_devices.len() + "Storage pool '{}' ({}) at {} with {} detected drives", + fs_config.name, fs_config.storage_type, fs_config.mount_point, device_names.len() ); } Err(e) => {