debugging

This commit is contained in:
John Smith
2021-12-14 09:48:33 -05:00
parent 8fe99f6090
commit c4b66aad36
23 changed files with 411 additions and 143 deletions
+7 -2
View File
@@ -298,7 +298,10 @@ impl NetworkManager {
.add_connection(descriptor.clone(), conn.clone())
{
Ok(e) => e,
Err(_) => return,
Err(err) => {
error!("{}", err);
return;
}
};
//
@@ -324,7 +327,9 @@ impl NetworkManager {
};
}
let _ = this.connection_table().remove_connection(&descriptor);
if let Err(err) = this.connection_table().remove_connection(&descriptor) {
error!("{}", err);
}
})
}