remove extra info log
All checks were successful
Run Check Script / check (pull_request) Successful in 1m16s

This commit is contained in:
Ian Letourneau 2025-08-31 16:59:03 -04:00
parent 8bcbe7a226
commit 57c098a6d8

View File

@ -1,6 +1,3 @@
use std::sync::Arc;
use tokio::time::Duration;
use async_trait::async_trait;
use harmony_inventory_agent::local_presence::DiscoveryEvent;
use log::{debug, info, trace};
@ -68,10 +65,8 @@ impl<T: Topology> Interpret<T> for DiscoverInventoryAgentInterpret {
let address = address.to_string();
let port = service.get_port();
info!("Getting host inventory on service at {address} port {port}");
tokio::task::spawn(async move {
info!("Getting inventory for host {address} {port}");
info!("Getting inventory for host {address} at port {port}");
let host =
harmony_inventory_agent::client::get_host_inventory(&address, port)
.await