fix log finally? maybe?

This commit is contained in:
mbecker20
2024-04-12 05:00:17 -07:00
parent a2d301bfbc
commit 0fb746bc03
@@ -42,7 +42,7 @@ pub async fn container_log_search(
}
};
let command =
format!("docker logs {container_name} --tail 5000 |& {grep}");
format!("docker logs {container_name} --tail 5000 2>&1 | {grep}");
run_monitor_command("get container log grep", command).await
}