File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ use parking_lot::RwLock;
66use reqwest:: { header:: AUTHORIZATION , Client , Method } ;
77use std:: { sync:: mpsc:: sync_channel, time:: Instant } ;
88use std:: { sync:: Arc , time:: Duration } ;
9+ use tracing:: trace;
910use tracing:: { debug, error} ;
1011use url:: Url ;
1112
@@ -157,6 +158,7 @@ impl Inner {
157158 async fn do_sync ( & self , client : & Client ) -> Result < ( ) , FPError > {
158159 use http:: header:: USER_AGENT ;
159160
161+ trace ! ( "do_sync {:?}" , self . auth) ;
160162 let mut request = client
161163 . request ( Method :: GET , self . toggles_url . clone ( ) )
162164 . header ( AUTHORIZATION , self . auth . clone ( ) )
@@ -194,6 +196,7 @@ impl Inner {
194196
195197 #[ cfg( feature = "use_std" ) ]
196198 fn do_sync ( & self ) -> Result < ( ) , FPError > {
199+ trace ! ( "do_sync {:?}" , self . auth) ;
197200 //TODO: report failure
198201 let mut request = ureq:: get ( self . toggles_url . as_str ( ) )
199202 . set (
You can’t perform that action at this time.
0 commit comments