From 50b73e91ca74755ecf62fbf45b12088760aec90c Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Fri, 26 Mar 2021 19:03:25 +0000 Subject: [PATCH] otter cli: Drop a rogue dbg! Signed-off-by: Ian Jackson --- src/bin/otter.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/bin/otter.rs b/src/bin/otter.rs index 304456d4..a161634b 100644 --- a/src/bin/otter.rs +++ b/src/bin/otter.rs @@ -565,7 +565,6 @@ fn read_spec let mut buf = String::new(); f.read_to_string(&mut buf).context("read")?; let tv: toml::Value = buf.parse().context("parse TOML")?; - dbgc!(&tv); let spec: T = toml_de::from_value(&tv).context("parse value")?; Ok::<_,AE>(spec) })().with_context(|| format!("read {} {:?}", T::WHAT, &filename))? -- 2.30.2