Skip to content
This repository was archived by the owner on Oct 12, 2023. It is now read-only.

Commit 067c1e9

Browse files
committed
Use k=v style printing
1 parent cfbcae4 commit 067c1e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

agent/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ fn main() {
5151

5252
if fs::metadata(&pipe).is_ok() {
5353
if let Ok(_) = fs::remove_file(&pipe){
54-
println!("pipe deleted");
54+
println!("pipe={} at=deleted", pipe.display());
5555
}
5656
}
5757

58-
eprintln!("binding to {}", pipe.display());
58+
eprintln!("pipe={} at=bind", pipe.display());
5959

6060
let _ = agent.run_unix(&pipe);
6161
return;

0 commit comments

Comments
 (0)