updated logging
This commit is contained in:
parent
292e29862b
commit
b27ea64722
@ -167,7 +167,7 @@ impl BrainDaemonService for BrainDaemonMock {
|
||||
req: Request<NodePubkey>,
|
||||
) -> Result<Response<Self::GetUpdateVMStream>, 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<UpdateVmResp>: {e:?}")
|
||||
|
Loading…
Reference in New Issue
Block a user