Skip to content

Commit

Permalink
fix: use correct format for the remote endpoint network config debug …
Browse files Browse the repository at this point in the history
…message
  • Loading branch information
crazyscot committed Dec 12, 2024
1 parent 21f8fb7 commit 6513a04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ pub async fn server_main(config: &Configuration) -> anyhow::Result<()> {
client_message.connection_type,
);

let bandwidth_info = format!("{config:?}");
let bandwidth_info = config.format_transport_config().to_string();
let file_buffer_size = usize::try_from(Configuration::send_buffer())?;

let credentials = Credentials::generate()?;
Expand Down

0 comments on commit 6513a04

Please sign in to comment.