route CLI logs to host processes only

This commit is contained in:
Shantur Rathore
2025-11-23 13:38:50 +00:00
parent d7c0c225b9
commit 3ce5569b82
4 changed files with 2 additions and 13 deletions

View File

@@ -355,7 +355,7 @@ impl CliProcessManager {
Ok(_) => {
let line = buffer.trim_end();
if !line.is_empty() {
let _ = app.emit("cli:log", json!({"stream": stream, "message": line}));
log_line(&format!("[cli][{}] {}", stream, line));
if ready.load(Ordering::SeqCst) {
continue;