Correct debug! documentation

When --cfg ndebug changed to -C debug-assertions the documentation was
updated to reflect the new name, but not that the meaning was
reversed.
This commit is contained in:
William Throwe 2015-08-10 19:56:26 -04:00
parent 6a5c4e77a8
commit 43f6c2fab7

View File

@ -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
///