diff --git a/src/grpc.rs b/src/grpc.rs index 7b9935a..1f7d7f4 100644 --- a/src/grpc.rs +++ b/src/grpc.rs @@ -167,7 +167,7 @@ impl BrainDaemonService for BrainDaemonMock { req: Request, ) -> Result, Status> { let req = req.into_inner(); - info!("Daemon {} requested GetNewVMReqsStream", req.node_pubkey); + info!("Daemon {} requested UpdateVMReqsStream", req.node_pubkey); let (grpc_tx, grpc_rx) = mpsc::channel(6); let (data_tx, mut data_rx) = mpsc::channel(6); self.data @@ -196,7 +196,7 @@ impl BrainDaemonService for BrainDaemonMock { while let Some(confirmation) = confirmations.next().await { match confirmation { Ok(c) => { - info!("Received confirmation from daemon: {c:?}") + info!("Received update confirmation from daemon: {c:?}") } Err(e) => { log::warn!("Daemon disconnected from Streaming: {e:?}")