Skip to content

Commit ed28076

Browse files
committed
WIP: drop debug diagnostics
1 parent 7c3eef0 commit ed28076

File tree

1 file changed

+1
-1
lines changed
  • rust/extractor/src/translate

1 file changed

+1
-1
lines changed

rust/extractor/src/translate/base.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ macro_rules! emit_detached {
8080
macro_rules! dispatch_to_tracing {
8181
($lvl:ident, $($arg:tt)+) => {
8282
match $lvl {
83-
DiagnosticSeverity::Debug => ::tracing::debug!($($arg)+),
83+
DiagnosticSeverity::Debug => {},
8484
DiagnosticSeverity::Info => ::tracing::info!($($arg)+),
8585
DiagnosticSeverity::Warning => ::tracing::warn!($($arg)+),
8686
DiagnosticSeverity::Error => ::tracing::error!($($arg)+),

0 commit comments

Comments
 (0)