From: Ian Jackson Date: Fri, 26 Mar 2021 19:03:25 +0000 (+0000) Subject: otter cli: Drop a rogue dbg! X-Git-Tag: otter-0.5.0~392 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=50b73e91ca74755ecf62fbf45b12088760aec90c;p=otter.git otter cli: Drop a rogue dbg! Signed-off-by: Ian Jackson --- 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))?