File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -393,7 +393,6 @@ fn process_stackerdb_event<T: SignerEventTrait>(
393
393
local_addr : Option < SocketAddr > ,
394
394
mut request : HttpRequest ,
395
395
) -> Result < SignerEvent < T > , EventError > {
396
- debug ! ( "Got stackerdb_chunks event" ) ;
397
396
let mut body = String :: new ( ) ;
398
397
if let Err ( e) = request. as_reader ( ) . read_to_string ( & mut body) {
399
398
error ! ( "Failed to read body: {:?}" , & e) ;
@@ -404,6 +403,7 @@ fn process_stackerdb_event<T: SignerEventTrait>(
404
403
) ) ) ;
405
404
}
406
405
406
+ debug ! ( "Got stackerdb_chunks event" ; "chunks_event_body" => %body) ;
407
407
let event: StackerDBChunksEvent = serde_json:: from_slice ( body. as_bytes ( ) )
408
408
. map_err ( |e| EventError :: Deserialize ( format ! ( "Could not decode body to JSON: {:?}" , & e) ) ) ?;
409
409
You can’t perform that action at this time.
0 commit comments