Skip to content

Commit 2871a13

Browse files
committed
Fix debug msg
1 parent f3b07bf commit 2871a13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/inner.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ async fn mainloop(
101101
}
102102

103103
let line = &stdout_buf[..stdout_buf.len() - 1]; // strip the newline
104-
debug!("Got stdin: {}", line);
104+
debug!("Got stdout: {}", line);
105105
let response = match parse_message(&line) {
106106
Ok(response) => {
107107
debug!("Parsed response: {:?}", response);

0 commit comments

Comments
 (0)