]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_parse/src/lexer/unescape_error_reporting.rs
Auto merge of #97802 - Enselic:add-no_ignore_sigkill-feature, r=joshtriplett
[rust.git] / compiler / rustc_parse / src / lexer / unescape_error_reporting.rs
index 273827864f1a405295e2f7f0499d605c82f290f0..77c4fadab45eacc9f61d5fd4cb4d361cedc62666 100644 (file)
@@ -20,13 +20,9 @@ pub(crate) fn emit_unescape_error(
     range: Range<usize>,
     error: EscapeError,
 ) {
-    tracing::debug!(
+    debug!(
         "emit_unescape_error: {:?}, {:?}, {:?}, {:?}, {:?}",
-        lit,
-        span_with_quotes,
-        mode,
-        range,
-        error
+        lit, span_with_quotes, mode, range, error
     );
     let last_char = || {
         let c = lit[range.clone()].chars().rev().next().unwrap();