Remove/change println! in server code (fix #358)

This commit is contained in:
Alex Auvolat
2022-09-13 16:01:55 +02:00
parent 07febd3ecd
commit 44733474bb
4 changed files with 1 additions and 4 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ pub async fn get_kubernetes_nodes(
let mut ret = Vec::with_capacity(nodes.items.len());
for node in nodes {
println!("Found Pod: {:?}", node.metadata.name);
info!("Found Pod: {:?}", node.metadata.name);
let pubkey = &node
.metadata