Skip to content

Commit

Permalink
ssh/src/ssh/messages.rs:INFO:ERROR
Browse files Browse the repository at this point in the history
  • Loading branch information
RandyMcMillan committed Dec 31, 2024
1 parent 63c0ee1 commit 7c28724
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ssh/src/ssh/messages.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ async fn send_message(

impl Knob {
pub async fn info(&self, message: &str) -> anyhow::Result<()> {
send_message(self.handle.clone(), self.channel, "EEJIT".green(), message).await
send_message(self.handle.clone(), self.channel, "INFO".green(), message).await
}

pub async fn error(&self, message: &str) -> anyhow::Result<()> {
send_message(self.handle.clone(), self.channel, "EEJIT".red(), message).await
send_message(self.handle.clone(), self.channel, "ERROR".red(), message).await
}

pub async fn repo_note(&self, message: &str) -> anyhow::Result<()> {
Expand Down

0 comments on commit 7c28724

Please sign in to comment.