upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/grasp-audit/src
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2026-02-25 13:44:49 +0000
committerDanConwayDev <DanConwayDev@protonmail.com>2026-02-25 13:44:49 +0000
commit16d428a1b05793a06d9590027a678fcb9fc849bb (patch)
tree361b8b513d29743bf4a5c608e48f5ca0f2100a0a /grasp-audit/src
parentd71d31d789f32aa6b077e52230055ca736799062 (diff)
use compact single-line JSON output for machine consumption and --watch log piping
Diffstat (limited to 'grasp-audit/src')
-rw-r--r--grasp-audit/src/probe.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/grasp-audit/src/probe.rs b/grasp-audit/src/probe.rs
index be14fc3..7158d42 100644
--- a/grasp-audit/src/probe.rs
+++ b/grasp-audit/src/probe.rs
@@ -120,7 +120,7 @@ impl ProbeReport {
120 .collect(), 120 .collect(),
121 ..self.clone() 121 ..self.clone()
122 }; 122 };
123 println!("{}", serde_json::to_string_pretty(&filtered).unwrap()); 123 println!("{}", serde_json::to_string(&filtered).unwrap());
124 } 124 }
125} 125}
126 126