diff --git a/src/liblog/macros.rs b/src/liblog/macros.rs index c9a3e39c423..46b51f50c85 100644 --- a/src/liblog/macros.rs +++ b/src/liblog/macros.rs @@ -135,9 +135,9 @@ macro_rules! info { ($($arg:tt)*) => (log!(::log::INFO, $($arg)*)) } -/// A convenience macro for logging at the debug log level. This macro can also -/// be omitted at compile time by passing `-C debug-assertions` to the compiler. If -/// this option is not passed, then debug statements will be compiled. +/// A convenience macro for logging at the debug log level. This macro will +/// be omitted at compile time in an optimized build unless `-C debug-assertions` +/// is passed to the compiler. /// /// # Examples ///