Skip to content
This repository was archived by the owner on Dec 15, 2025. It is now read-only.

Commit 367cc28

Browse files
authored
add logs separator (#57)
1 parent 0527c73 commit 367cc28

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/manager/mod.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,11 @@ impl ProcessManager {
179179
.into_inner();
180180

181181
if let Log::Ring(prefix) = log {
182+
let _ = self
183+
.ring
184+
.push(format!("[-] {}: ------------ [start] ------------", prefix))
185+
.await;
186+
182187
if let Some(out) = child.stdout.take() {
183188
let out = File::from_std(unsafe { StdFile::from_raw_fd(out.into_raw_fd()) });
184189
self.sink(out, format!("[+] {}", prefix))

0 commit comments

Comments
 (0)