Skip to content

Commit

Permalink
Fix ue_dci and ue_config ngscope messsage output in ngcontrol
Browse files Browse the repository at this point in the history
  • Loading branch information
bastian-src committed May 23, 2024
1 parent fededd9 commit 04e813c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/logic/ngscope_controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -299,11 +299,11 @@ fn check_ngscope_message(socket: &UdpSocket, tx_dci: &mut Bus<MessageDci>) {
}
Message::Dci(ue_dci) => {
// TODO: Evaluate how to handle this
println!("{:?}", ue_dci)
println!("[ngcontrol] {:?}", ue_dci)
}
Message::Config(cell_config) => {
// TODO: Evaluate how to handle this
println!("{:?}", cell_config)
println!("[ngcontrol] {:?}", cell_config)
}
// TODO: Evaluate how to handle Start andExit
Message::Start => {}
Expand Down

0 comments on commit 04e813c

Please sign in to comment.