File tree Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ pub async fn handle_triage(
23
23
body : api:: triage:: Request ,
24
24
ctxt : & SiteCtxt ,
25
25
) -> api:: ServerResult < api:: triage:: Response > {
26
+ log:: info!( "handle_triage({:?})" , body) ;
26
27
let start = body. start ;
27
28
let end = body. end ;
28
29
let master_commits = collector:: master_commits ( )
@@ -91,6 +92,7 @@ pub async fn handle_compare(
91
92
body : api:: comparison:: Request ,
92
93
ctxt : & SiteCtxt ,
93
94
) -> api:: ServerResult < api:: comparison:: Response > {
95
+ log:: info!( "handle_compare({:?})" , body) ;
94
96
let master_commits = collector:: master_commits ( )
95
97
. await
96
98
. map_err ( |e| format ! ( "error retrieving master commit list: {}" , e) ) ?;
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ pub async fn handle_github(
24
24
request : github:: Request ,
25
25
ctxt : Arc < SiteCtxt > ,
26
26
) -> ServerResult < github:: Response > {
27
+ log:: info!( "handle_github({:?})" , request) ;
27
28
if request. comment . body . contains ( " homu: " ) {
28
29
if let Some ( sha) = parse_homu_comment ( & request. comment . body ) . await {
29
30
enqueue_sha ( request. issue , & ctxt, sha) . await ?;
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ pub async fn handle_self_profile_processed_download(
17
17
body : self_profile_processed:: Request ,
18
18
ctxt : & SiteCtxt ,
19
19
) -> http:: Response < hyper:: Body > {
20
+ log:: info!( "handle_self_profile_processed_download({:?})" , body) ;
20
21
let mut params = body. params . clone ( ) ;
21
22
let diff_against = params. remove ( "base_commit" ) ;
22
23
@@ -399,6 +400,7 @@ pub async fn handle_self_profile_raw_download(
399
400
body : self_profile_raw:: Request ,
400
401
ctxt : & SiteCtxt ,
401
402
) -> http:: Response < hyper:: Body > {
403
+ log:: info!( "handle_self_profile_raw_download({:?})" , body) ;
402
404
let url = match handle_self_profile_raw ( body, ctxt) . await {
403
405
Ok ( v) => v. url ,
404
406
Err ( e) => {
You can’t perform that action at this time.
0 commit comments