summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 5b8d479..d912973 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -4,12 +4,16 @@
//! Frippy is an IRC bot that runs plugins on each message
//! received.
//!
-//! # Example
+//! ## Example
//! ```no_run
//! extern crate frippy;
//!
//! frippy::run();
//! ```
+//!
+//! # Logging
+//! Frippy uses the [log](https://docs.rs/log) crate so you can log events
+//! which might be of interest.
#[macro_use]
extern crate log;