logger Build Status

Morgan-inspired logging middleware for the Iron web framework.

Example

```rust extern crate iron;

use std::io::net::ip::Ipv4Addr; use iron::{Iron, Server, Chain};

fn main() { let logger = Logger::new(None); let mut server: Server = Iron::new(); server.chain.link(logger); server.listen(Ipv4Addr(127, 0, 0, 1), 3000); } ```

Overview

Logger is a part of Iron's core bundle.

Installation

If you're using a Cargo.toml to manage dependencies, just add logger to the toml:

```toml [dependencies.logger]

git = "https://github.com/iron/logger.git" ```

Otherwise, cargo build, and the rlib will be in your target directory.

Documentation

Along with the online documentation, you can build a local copy with make doc.

Examples

Get Help

One of us (@reem, @zzmp, @theptrk, @mcreinhard) is usually on #iron on the mozilla irc. Come say hi and ask any questions you might have. We are also usually on #rust and #rust-webdev.