aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 186d35c..54c672e 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -147,12 +147,12 @@ impl Bot {
match IrcServer::new_future(reactor.handle(), config).and_then(|f| {reactor.run(f)}) {
Ok(v) => v,
Err(e) => {
- error!("Failed to connect: {}", e);
+ error!("Failed to connect to IRC server: {}", e);
return;
}
};
- info!("Connected to server");
+ info!("Connected to IRC server");
match server.identify() {
Ok(_) => info!("Identified"),