From 41e96ec6d9e78d6523a17e170038167a0fbd3951 Mon Sep 17 00:00:00 2001 From: Till Hoeppner Date: Sun, 28 Jun 2015 21:08:49 +0200 Subject: Add env_logger doc link --- examples/02.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'examples/02.rs') diff --git a/examples/02.rs b/examples/02.rs index a562249..c70f905 100644 --- a/examples/02.rs +++ b/examples/02.rs @@ -15,6 +15,7 @@ use openssl::ssl::{ Ssl, SslContext, SslMethod }; fn main() { // If the environment variable RUST_LOG is set to "info", // irsc will log incoming and outgoing data in raw form. + // Documentation: http://rust-lang.github.io/log/env_logger/#enabling-logging env_logger::init().ok().expect("Failed to initialise env_logger"); let mut s = OwnedClient::new(); @@ -25,8 +26,9 @@ fn main() { // Connect using the newly constructed Ssl configuration. // If Ssl is not desired, use .connect(...) without the ssl argument. s.connect_ssl("irc.mozilla.org", 6697, ssl); - // Send the USER and NICK message in one go, - // + + // Send the USER and NICK message in one go: + // register(nick, user, description, [password]) s.register("irsc02", "irsc", "Example bot 02", None); // The client must be accessible from anywh when using the Event API. -- cgit v1.2.3