@@ -223,9 +223,9 @@ impl Client {
223
223
) -> Result < SerdeEnvelope < TimestampedCheckpoint > , ClientError > {
224
224
let url = self . url . join ( paths:: fetch_checkpoint ( ) ) ;
225
225
tracing:: debug!(
226
- desc = "getting latest checkpoint" ,
227
- url = url ,
228
- registry_header = ?registry_domain
226
+ url ,
227
+ registry_header = ?registry_domain ,
228
+ "getting latest checkpoint" ,
229
229
) ;
230
230
into_result :: < _ , FetchError > (
231
231
self . client
@@ -246,9 +246,9 @@ impl Client {
246
246
) -> Result < CheckpointVerificationResponse , ClientError > {
247
247
let url = self . url . join ( paths:: verify_checkpoint ( ) ) ;
248
248
tracing:: debug!(
249
- desc = "verifying checkpoint" ,
250
- url = url ,
251
- registry_header = ?registry_domain
249
+ url ,
250
+ registry_header = ?registry_domain ,
251
+ "verifying checkpoint" ,
252
252
) ;
253
253
254
254
let response = self
@@ -270,9 +270,9 @@ impl Client {
270
270
) -> Result < FetchLogsResponse , ClientError > {
271
271
let url = self . url . join ( paths:: fetch_logs ( ) ) ;
272
272
tracing:: debug!(
273
- desc = "fetching logs" ,
274
- url = url ,
275
- registry_header = ?registry_domain
273
+ url ,
274
+ registry_header = ?registry_domain ,
275
+ "fetching logs" ,
276
276
) ;
277
277
let response = self
278
278
. client
@@ -302,9 +302,9 @@ impl Client {
302
302
) -> Result < FetchPackageNamesResponse , ClientError > {
303
303
let url = self . url . join ( paths:: fetch_package_names ( ) ) ;
304
304
tracing:: debug!(
305
- desc = "fetching package names" ,
306
- url = url ,
307
- registry_header = ?registry_domain
305
+ url ,
306
+ registry_header = ?registry_domain ,
307
+ "fetching package names" ,
308
308
) ;
309
309
let response = self
310
310
. client
@@ -324,9 +324,9 @@ impl Client {
324
324
) -> Result < LedgerSourcesResponse , ClientError > {
325
325
let url = self . url . join ( paths:: ledger_sources ( ) ) ;
326
326
tracing:: debug!(
327
- desc = "getting ledger sources" ,
328
- url = url ,
329
- registry_header = ?registry_domain
327
+ url ,
328
+ registry_header = ?registry_domain ,
329
+ "getting ledger sources" ,
330
330
) ;
331
331
into_result :: < _ , LedgerError > (
332
332
self . client
@@ -348,10 +348,10 @@ impl Client {
348
348
) -> Result < PackageRecord , ClientError > {
349
349
let url = self . url . join ( & paths:: publish_package_record ( log_id) ) ;
350
350
tracing:: debug!(
351
- desc = "publishing to package" ,
352
351
log_id = log_id. to_string( ) ,
353
- url = url,
354
- registry_header = ?registry_domain
352
+ url,
353
+ registry_header = ?registry_domain,
354
+ "publishing to package" ,
355
355
) ;
356
356
let response = self
357
357
. client
@@ -373,11 +373,11 @@ impl Client {
373
373
) -> Result < PackageRecord , ClientError > {
374
374
let url = self . url . join ( & paths:: package_record ( log_id, record_id) ) ;
375
375
tracing:: debug!(
376
- desc = "getting package record" ,
377
376
log_id = log_id. to_string( ) ,
378
377
record_id = record_id. to_string( ) ,
379
- url = url,
380
- registry_header = ?registry_domain
378
+ url,
379
+ registry_header = ?registry_domain,
380
+ "getting package record" ,
381
381
) ;
382
382
into_result :: < _ , PackageError > (
383
383
self . client
@@ -398,10 +398,10 @@ impl Client {
398
398
) -> Result < ContentSourcesResponse , ClientError > {
399
399
let url = self . url . join ( & paths:: content_sources ( digest) ) ;
400
400
tracing:: debug!(
401
- desc = "getting content sources for digest" ,
402
401
digest = digest. to_string( ) ,
403
- url = url,
404
- registry_header = ?registry_domain
402
+ url,
403
+ registry_header = ?registry_domain,
404
+ "getting content sources for digest" ,
405
405
) ;
406
406
into_result :: < _ , ContentError > (
407
407
self . client
@@ -462,9 +462,9 @@ impl Client {
462
462
) -> Result < ( ) , ClientError > {
463
463
let url = self . url . join ( paths:: prove_inclusion ( ) ) ;
464
464
tracing:: debug!(
465
- desc = "proving checkpoint inclusion" ,
466
- url = url ,
467
- registry_header = ?registry_domain
465
+ url ,
466
+ registry_header = ?registry_domain ,
467
+ "proving checkpoint inclusion" ,
468
468
) ;
469
469
let response = into_result :: < InclusionResponse , ProofError > (
470
470
self . client
0 commit comments