/ tests / custom_formatters.nim
custom_formatters.nim
 1  import
 2    chronicles, custom_formatters_types
 3  
 4  var a = AttestationData(peer: Peer(name: "Peer 1"),
 5                          attestation: "some attestation",
 6                          signature: "some signature")
 7  
 8  info  "Got attestation 1", a
 9  warn "Got attestation 2", attestation = a
10