diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2026-02-25 13:44:49 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2026-02-25 13:44:49 +0000 |
| commit | 16d428a1b05793a06d9590027a678fcb9fc849bb (patch) | |
| tree | 361b8b513d29743bf4a5c608e48f5ca0f2100a0a /grasp-audit/src | |
| parent | d71d31d789f32aa6b077e52230055ca736799062 (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.rs | 2 |
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 | ||