diff options
author | Teddy Wing | 2017-11-13 23:07:28 +0100 |
---|---|---|
committer | Teddy Wing | 2017-11-13 23:08:45 +0100 |
commit | df9b4dbd7aa8401b0e488c99c49205bc39dc5a80 (patch) | |
tree | cebaa759d58e68a0d35bf764418dd899f43c0ebb /src/github.rs | |
parent | 00fc313eb14248401bc3b1863334f4b0c268007d (diff) | |
download | kipper-df9b4dbd7aa8401b0e488c99c49205bc39dc5a80.tar.bz2 |
Focus HTTP response logging on `update_commit_status()`
Comment out HTTP response logging from Jenkins because those may be
coming back all right. Actually I might want to leave the log from
`request_job()` now that I think about it. Add some additional logging
on `update_commit_status()` to hopefully try to see why it's not getting
called all the time.
Diffstat (limited to 'src/github.rs')
-rw-r--r-- | src/github.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/github.rs b/src/github.rs index 9b95192..44a4419 100644 --- a/src/github.rs +++ b/src/github.rs @@ -93,6 +93,9 @@ pub fn update_commit_status( .json(¶ms) .send()?; + debug!("{}", response.url()); + debug!("{}", response.status()); + debug!("{}", response.headers()); debug!("{}", response.text()?); Ok(()) |