Radish alpha
r
Radicle CI broker
Radicle
Git (anonymous pull)
Log in to clone via SSH
feat: log actions when processing an event at info level
Lars Wirzenius committed 1 year ago
commit 866d6a879f880e8c3ec17c5b76300923c0d190d7
parent 6e375867009679f98da44b82c1b517c66337007d
1 file changed +2 -2
modified src/queueproc.rs
@@ -100,7 +100,7 @@ impl QueueProcessor {
                oid,
                old: _,
            } => {
-
                debug!("Action: run: {rid} {oid}");
+
                info!("Action: run: {rid} {oid}");

                let trigger = RequestBuilder::default()
                    .profile(&self.profile)
@@ -113,7 +113,7 @@ impl QueueProcessor {
                Ok(false)
            }
            BrokerEvent::Shutdown => {
-
                debug!("Action: shutdown");
+
                info!("Action: shutdown");
                Ok(true)
            }
        }