From 00fc313eb14248401bc3b1863334f4b0c268007d Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Mon, 13 Nov 2017 23:06:03 +0100 Subject: Log response body of HTTP calls Log the HTTP response bodies to see if there's something we can gather from our connected services' API responses. --- src/github.rs | 4 +++- src/jenkins.rs | 4 ++++ src/lib.rs | 3 +++ 3 files changed, 10 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/github.rs b/src/github.rs index 4267468..9b95192 100644 --- a/src/github.rs +++ b/src/github.rs @@ -69,7 +69,7 @@ pub fn update_commit_status( params.insert("description", d); } - client.post( + let mut response = client.post( &format!( "{}/repos/{}/{}/statuses/{}", API_URL, @@ -93,6 +93,8 @@ pub fn update_commit_status( .json(¶ms) .send()?; + debug!("{}", response.text()?); + Ok(()) } diff --git a/src/jenkins.rs b/src/jenkins.rs index 5cd3bbe..c954846 100644 --- a/src/jenkins.rs +++ b/src/jenkins.rs @@ -231,6 +231,8 @@ pub fn get_jobs( let body = response.text()?; + debug!("{}", body); + let jobs = json::parse(body.as_ref())?; Ok( @@ -255,6 +257,8 @@ pub fn request_job( let body = response.text()?; + debug!("{}", body); + let job = Job::new(body)?; Ok(job) diff --git a/src/lib.rs b/src/lib.rs index a526783..d106d16 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -15,6 +15,9 @@ // You should have received a copy of the GNU General Public License // along with Kipper. If not, see . +#[macro_use] +extern crate log; + pub mod jenkins; pub mod pull_request; -- cgit v1.2.3