about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/liblog/macros.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblog/macros.rs b/src/liblog/macros.rs
index 80eb1601035..c9a3e39c423 100644
--- a/src/liblog/macros.rs
+++ b/src/liblog/macros.rs
@@ -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