]> git.huck.website - metaforge.git/commitdiff
removed: extraneous logging
authorHuck Boles <huck@huck.website>
Tue, 30 May 2023 23:47:50 +0000 (18:47 -0500)
committerHuck Boles <huck@huck.website>
Tue, 30 May 2023 23:47:50 +0000 (18:47 -0500)
src/parser.rs

index 770515824e60b521ba8f8c54d85defd42b238057..259ddbaeb01681a46e45c7778c30d882f095b8bf 100644 (file)
@@ -23,8 +23,6 @@ use pest::{
 pub struct MetaParser;
 
 pub fn parse_string(file: String, opts: &Options) -> Result<MetaFile> {
-    log!(opts, "parsing file", 3);
-
     let pair = MetaParser::parse(Rule::file, &file)?.next().unwrap();
 
     let mut meta_file = MetaFile::new(opts);