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;
6
6
use reqwest:: { header:: AUTHORIZATION , Client , Method } ;
7
7
use std:: { sync:: mpsc:: sync_channel, time:: Instant } ;
8
8
use std:: { sync:: Arc , time:: Duration } ;
9
+ use tracing:: trace;
9
10
use tracing:: { debug, error} ;
10
11
use url:: Url ;
11
12
@@ -157,6 +158,7 @@ impl Inner {
157
158
async fn do_sync ( & self , client : & Client ) -> Result < ( ) , FPError > {
158
159
use http:: header:: USER_AGENT ;
159
160
161
+ trace ! ( "do_sync {:?}" , self . auth) ;
160
162
let mut request = client
161
163
. request ( Method :: GET , self . toggles_url . clone ( ) )
162
164
. header ( AUTHORIZATION , self . auth . clone ( ) )
@@ -194,6 +196,7 @@ impl Inner {
194
196
195
197
#[ cfg( feature = "use_std" ) ]
196
198
fn do_sync ( & self ) -> Result < ( ) , FPError > {
199
+ trace ! ( "do_sync {:?}" , self . auth) ;
197
200
//TODO: report failure
198
201
let mut request = ureq:: get ( self . toggles_url . as_str ( ) )
199
202
. set (
You can’t perform that action at this time.
0 commit comments