Skip to content

Commit

Permalink
examples: remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
Wenzel committed Feb 19, 2021
1 parent cefd112 commit 7698c95
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions examples/mem-dump.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,6 @@ fn main() {
let unix_socket = matches
.value_of("unix_socket")
.map(|s| SocketType::UnixSocket(s.to_string()));
if unix_socket.is_none() {
println!("empty unix socket !");
}
let vsock_socket = matches.value_of("vsock_port").map(|s| {
SocketType::VSock(s.parse::<u32>().expect(&*format!(
"Failed to convert command line value \"{}\" to vSock port integer",
Expand Down

0 comments on commit 7698c95

Please sign in to comment.