@@ -58,6 +58,15 @@ default-features = false
features = ["colors"]
```
+To direct logging output to `stderr` use the `stderr` feature:
+
+```
+[dependencies.simple_logger]
+features = ["stderr"]
+This can be combined with any other feature.
Licence
-------
@@ -1,6 +1,6 @@
//! A logger that prints all messages with a simple, readable output format.
//!
-//! Optional features include timestamps and colored output.
+//! Optional features include timestamps, colored output and logging to stderr.
//! ```
//! simple_logger::SimpleLogger::new().env().init().unwrap();