diff options
author | iximeow <me@iximeow.net> | 2023-07-04 10:16:30 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2023-07-04 10:16:30 -0700 |
commit | 26c321e49382be7f0bdc64696192b3958487e303 (patch) | |
tree | faf16bae3a6718a05901d1f8b9b84ac9e4ee0cee /src | |
parent | 75697526b512e5597d9bbfcda1bb74e3fc8bd1bb (diff) |
too noisy
Diffstat (limited to 'src')
-rw-r--r-- | src/ci_runner.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/ci_runner.rs b/src/ci_runner.rs index 27da9da..3e7dd42 100644 --- a/src/ci_runner.rs +++ b/src/ci_runner.rs @@ -388,7 +388,6 @@ impl RunnerClient { async fn wait_for_work(&mut self, accepted_pushers: Option<&[String]>) -> Result<Option<RequestedJob>, WorkAcquireError> { loop { let message = self.recv_typed::<ClientProto>().await; - eprintln!("got message: {:?}", &message); match message { Ok(Some(ClientProto::NewTask(new_task))) => { return Ok(Some(new_task)); |