Skip to content

Commit c8d1b6b

Browse files
committed
Fix typo
1 parent 55457ed commit c8d1b6b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/tcp/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ impl TcpReverseProxy {
176176

177177
let outbound: Connection = self.connect().await?;
178178

179-
tracing::info!("Connection #{connection_id} enstablished");
179+
tracing::info!("Connection #{connection_id} established");
180180

181181
let (mut ri, mut wi) = split(inbound);
182182
let (mut ro, mut wo) = split(outbound);

src/tor.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ pub async fn init_client() -> Result<TorClient<PreferredRuntime>> {
1313
config.address_filter().allow_onion_addrs(true);
1414
let config: TorClientConfig = config.build()?;
1515

16-
tracing::info!("Bootstraping embedded Tor client...");
16+
tracing::info!("Bootstrapping embedded Tor client...");
1717

1818
let client = TorClient::builder()
1919
.config(config)
2020
.create_bootstrapped()
2121
.await?;
2222

23-
tracing::info!("Bootstrap completed");
23+
tracing::info!("Tor bootstrap completed!");
2424

2525
Ok(client)
2626
}

0 commit comments

Comments
 (0)