Skip to content

Commit 10c002d

Browse files
committed
Net Module: Fixes in target.rs - fixed formatting issues
1 parent 0ee06ca commit 10c002d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/rust/lib_ccxr/src/net/target.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ impl<'a> SendTarget<'a> {
8282
"Unable to connect, address passed is null\n"
8383
);
8484
}
85-
85+
info!("Target address: {}\n", config.target_addr); // TODO remove this
86+
info!("Target port: {}\n", config.port.unwrap_or(DEFAULT_TCP_PORT));
8687
let tcp_stream = TcpStream::connect((
8788
config.target_addr,
8889
config.port.unwrap_or(DEFAULT_TCP_PORT),

0 commit comments

Comments
 (0)