diff --git a/domo_node/src/app/master.rs b/domo_node/src/app/master.rs index 944e9c9..929b35c 100644 --- a/domo_node/src/app/master.rs +++ b/domo_node/src/app/master.rs @@ -47,6 +47,7 @@ impl Devices { socket_addr, properties: HashMap::new() }); + info!("Registered new device: {}", identifier); identifier } diff --git a/domo_node/src/app/mod.rs b/domo_node/src/app/mod.rs index 45e2eca..6abfa64 100644 --- a/domo_node/src/app/mod.rs +++ b/domo_node/src/app/mod.rs @@ -80,6 +80,7 @@ impl NodeType { p.packet_id, )).await; } + PacketData::NodeManagement(NodeManagementCommand::RegisterNode { .. }) => (), _ => warn!("dropped packet") } }