From 10254afbada006726f05fd342e17097952c56874 Mon Sep 17 00:00:00 2001 From: Horaci Macias Date: Sat, 5 Nov 2022 09:55:28 +0100 Subject: [PATCH] Remove println. https://github.com/tokio-rs/prost/issues/745 --- prost-build/src/ast.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/prost-build/src/ast.rs b/prost-build/src/ast.rs index 0c3b3d40a..8a7fa2acd 100644 --- a/prost-build/src/ast.rs +++ b/prost-build/src/ast.rs @@ -110,7 +110,6 @@ impl Comments { /// - escape urls as /// - escape `[` & `]` fn sanitize_line(line: &str) -> String { - println!("prost: {:?}", line); lazy_static! { static ref RULE_URL: Regex = Regex::new(r"https?://[^\s)]+").unwrap(); static ref RULE_BRACKETS: Regex = Regex::new(r"(\[)(\S+)(])").unwrap();