From 5c981f51f8cd1ddfa5a47a749da5798deee5c434 Mon Sep 17 00:00:00 2001 From: Till Hoeppner Date: Sun, 28 Jun 2015 19:37:50 +0200 Subject: Move IO logging into client.rs --- src/client.rs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/client.rs') diff --git a/src/client.rs b/src/client.rs index d3a8542..339415b 100644 --- a/src/client.rs +++ b/src/client.rs @@ -157,8 +157,9 @@ impl OwnedClient { None => return Result(Err(IrscError::NotConnected)) }); - for line in reader.lines() { - let line = line.unwrap().parse(); + for raw_line in reader.lines() { + let line = raw_line.as_ref().unwrap().parse(); + info!("<< {}", raw_line.unwrap()); if let Ok(msg) = line { self.handle_event(&msg); @@ -187,8 +188,9 @@ impl OwnedClient { None => return Result(Err(IrscError::NotConnected)) }); - for line in reader.lines() { - let line = line.unwrap().parse(); + for raw_line in reader.lines() { + let line = raw_line.as_ref().unwrap().parse(); + info!("<< {}", raw_line.unwrap()); if let Ok(msg) = line { s.handle_event(&msg); -- cgit v1.2.3