File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
crates/store/re_server/src Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ impl ServerHandle {
51
51
ready = self . ready. recv( ) => {
52
52
match ready {
53
53
Some ( local_addr) => {
54
- info!( "Ready for connections" ) ;
54
+ info!( "Ready for connections. " ) ;
55
55
Ok ( local_addr)
56
56
} ,
57
57
None => Err ( ServerError :: ReadyChannelClosedUnexpectedly )
@@ -91,7 +91,9 @@ impl Server {
91
91
let listener = if let Ok ( listener) = TcpListener :: bind ( self . addr ) . await {
92
92
#[ expect( clippy:: unwrap_used) ]
93
93
let local_addr = listener. local_addr ( ) . unwrap ( ) ;
94
- info ! ( "Listening on {local_addr}" ) ;
94
+ info ! (
95
+ "Listening on {local_addr}. To connect the Rerun Viewer, use the following address: rerun+http://{local_addr}"
96
+ ) ;
95
97
96
98
#[ expect( clippy:: unwrap_used) ]
97
99
ready_tx. send ( local_addr) . await . unwrap ( ) ;
You can’t perform that action at this time.
0 commit comments