We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5705ef2 commit 820c5abCopy full SHA for 820c5ab
src/rust-2018/macros/macro-changes.md
@@ -244,15 +244,15 @@ macro_rules! __impl_log {
244
#[macro_export(local_inner_macros)]
245
macro_rules! warn {
246
($($args:tt)*) => {
247
- __impl_log!($crate::LogLevel::Warn, format_args!($($args)*))
+ __impl_log!($crate::LogLevel::Warn, _log__format_args!($($args)*))
248
}
249
250
251
/// Error level log message
252
253
macro_rules! error {
254
255
- __impl_log!($crate::LogLevel::Error, format_args!($($args)*))
+ __impl_log!($crate::LogLevel::Error, _log__format_args!($($args)*))
256
257
258
0 commit comments