File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ impl TcpReverseProxy {
176
176
177
177
let outbound: Connection = self . connect ( ) . await ?;
178
178
179
- tracing:: info!( "Connection #{connection_id} enstablished " ) ;
179
+ tracing:: info!( "Connection #{connection_id} established " ) ;
180
180
181
181
let ( mut ri, mut wi) = split ( inbound) ;
182
182
let ( mut ro, mut wo) = split ( outbound) ;
Original file line number Diff line number Diff line change @@ -13,14 +13,14 @@ pub async fn init_client() -> Result<TorClient<PreferredRuntime>> {
13
13
config. address_filter ( ) . allow_onion_addrs ( true ) ;
14
14
let config: TorClientConfig = config. build ( ) ?;
15
15
16
- tracing:: info!( "Bootstraping embedded Tor client..." ) ;
16
+ tracing:: info!( "Bootstrapping embedded Tor client..." ) ;
17
17
18
18
let client = TorClient :: builder ( )
19
19
. config ( config)
20
20
. create_bootstrapped ( )
21
21
. await ?;
22
22
23
- tracing:: info!( "Bootstrap completed" ) ;
23
+ tracing:: info!( "Tor bootstrap completed! " ) ;
24
24
25
25
Ok ( client)
26
26
}
You can’t perform that action at this time.
0 commit comments