File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -952,6 +952,9 @@ impl Client {
952
952
/// The number of times the SSO server will try to bind to a random port
953
953
const SSO_SERVER_BIND_TRIES : u8 = 10 ;
954
954
955
+ let homeserver = self . homeserver ( ) . await ;
956
+ info ! ( "Logging in to {}" , homeserver) ;
957
+
955
958
let ( signal_tx, signal_rx) = tokio:: sync:: oneshot:: channel ( ) ;
956
959
let ( data_tx, data_rx) = tokio:: sync:: oneshot:: channel ( ) ;
957
960
let data_tx_mutex = Arc :: new ( std:: sync:: Mutex :: new ( Some ( data_tx) ) ) ;
@@ -1108,6 +1111,9 @@ impl Client {
1108
1111
device_id : Option < & str > ,
1109
1112
initial_device_display_name : Option < & str > ,
1110
1113
) -> Result < login:: v3:: Response > {
1114
+ let homeserver = self . homeserver ( ) . await ;
1115
+ info ! ( "Logging in to {}" , homeserver) ;
1116
+
1111
1117
let request = assign ! (
1112
1118
login:: v3:: Request :: new(
1113
1119
login:: v3:: LoginInfo :: Token ( login:: v3:: Token :: new( token) ) ,
You can’t perform that action at this time.
0 commit comments