diff --git a/WatcherAgent/src/hardware/disk.rs b/WatcherAgent/src/hardware/disk.rs index 08e143d..2ea0206 100644 --- a/WatcherAgent/src/hardware/disk.rs +++ b/WatcherAgent/src/hardware/disk.rs @@ -37,28 +37,12 @@ pub async fn get_disk_info() -> Result Option { async fn debug_docker_environment(docker: &Docker) { println!("=== DOCKER ENVIRONMENT DEBUG ==="); - // Test basic Docker connection - match docker.version().await { - Ok(version) => { - println!("Docker version: {:?}", version); - } - Err(e) => { - eprintln!("Failed to get Docker version: {}", e); - } - } - // List containers to see what's available - CORRECTED let options = Some(ListContainersOptions { all: true, // include stopped containers