From b9a1bcebf0840e7a9b45d53e6839071bc4b4168a Mon Sep 17 00:00:00 2001 From: Jane Petrovna Date: Tue, 28 Dec 2021 17:53:14 -0500 Subject: [PATCH] debug --- src/util/pattern.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/util/pattern.rs b/src/util/pattern.rs index 39f4a90..a4513f6 100644 --- a/src/util/pattern.rs +++ b/src/util/pattern.rs @@ -121,6 +121,7 @@ impl Pattern for Value { } pub fn parse_line(v: Vec) -> Result, ParseError> { + println!("{:?}", v); v.try_into() } @@ -132,4 +133,4 @@ pub fn format_multiline(input: &str) -> Vec> { .collect::>() ) .collect() -} \ No newline at end of file +}