Auto merge of #25045 - XuefengWu:1398_remove_ndebug, r=huonw

According to #1398 and pull https://github.com/rust-lang/cargo/pull/1444 , fix doc overridable using -C debug-assertions
This commit is contained in:
bors 2015-05-02 12:56:05 +00:00
commit 38cedaf430

View file

@ -136,7 +136,7 @@ macro_rules! info {
}
/// A convenience macro for logging at the debug log level. This macro can also
/// be omitted at compile time by passing `--cfg ndebug` to the compiler. If
/// 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.
///
/// # Examples