moved eprintln to println

This commit is contained in:
2025-10-04 17:11:40 +02:00
parent c81040b16b
commit 4dc8c56a5c

View File

@@ -68,11 +68,11 @@ impl DockerManager {
match self.get_client_container().await { match self.get_client_container().await {
Ok(Some(container)) => container.image, Ok(Some(container)) => container.image,
Ok(None) => { Ok(None) => {
eprintln!("Warning: No WatcherAgent container found"); println!("Warning: No WatcherAgent container found");
"unknown".to_string() "unknown".to_string()
} }
Err(e) => { Err(e) => {
eprintln!("Warning: Could not get current image version: {}", e); println!("Warning: Could not get current image version: {}", e);
"unknown".to_string() "unknown".to_string()
} }
} }