mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-05 05:04:24 +00:00
Add macros from the log crate to whitelist
This commit is contained in:
parent
8f395bd953
commit
aeb33986b1
@ -1796,6 +1796,7 @@ fn rewrite_string_lit(context: &RewriteContext, span: Span, shape: Shape) -> Opt
|
||||
}
|
||||
|
||||
const FORMAT_LIKE_WHITELIST: &[&str] = &[
|
||||
// From the Rust Standard Library.
|
||||
"eprint!",
|
||||
"eprintln!",
|
||||
"format!",
|
||||
@ -1803,6 +1804,12 @@ const FORMAT_LIKE_WHITELIST: &[&str] = &[
|
||||
"panic!",
|
||||
"println!",
|
||||
"unreachable!",
|
||||
// From the `log` crate.
|
||||
"debug!",
|
||||
"error!",
|
||||
"info!",
|
||||
"panic!",
|
||||
"warn!",
|
||||
];
|
||||
|
||||
const WRITE_LIKE_WHITELIST: &[&str] = &["assert!", "write!", "writeln!"];
|
||||
|
Loading…
Reference in New Issue
Block a user