@@ -554,6 +554,12 @@ impl VerifierClient {
554554 self . base. base_url, self . api_version, agent_uuid
555555 ) ;
556556
557+ debug ! (
558+ "POST {url} with data: {}" ,
559+ serde_json:: to_string_pretty( & data)
560+ . unwrap_or_else( |_| "Invalid JSON" . to_string( ) )
561+ ) ;
562+
557563 let response = self
558564 . base
559565 . client
@@ -644,6 +650,8 @@ impl VerifierClient {
644650 self . base. base_url, agent_uuid
645651 ) ;
646652
653+ debug ! ( "GET {url}" ) ;
654+
647655 let response = self
648656 . base
649657 . client
@@ -786,6 +794,8 @@ impl VerifierClient {
786794 self . base. base_url, agent_uuid
787795 ) ;
788796
797+ debug ! ( "DELETE {url}" ) ;
798+
789799 let response = self
790800 . base
791801 . client
@@ -812,6 +822,8 @@ impl VerifierClient {
812822 self . base. base_url, self . api_version, agent_uuid
813823 ) ;
814824
825+ debug ! ( "DELETE {url}" ) ;
826+
815827 let response = self
816828 . base
817829 . client
@@ -981,6 +993,8 @@ impl VerifierClient {
981993 url. push_str ( & format ! ( "?verifier={vid}" ) ) ;
982994 }
983995
996+ debug ! ( "GET {url}" ) ;
997+
984998 let response = self
985999 . base
9861000 . client
@@ -1190,6 +1204,13 @@ impl VerifierClient {
11901204 self . base. base_url, policy_name
11911205 ) ;
11921206
1207+ debug ! (
1208+ "POST {} with data: {}" ,
1209+ url,
1210+ serde_json:: to_string_pretty( & policy_data)
1211+ . unwrap_or_else( |_| "Invalid JSON" . to_string( ) )
1212+ ) ;
1213+
11931214 let response = self
11941215 . base
11951216 . client
0 commit comments