logger 0.0.1

Logging middleware for the Iron framework.
docs.rs failed to build logger-0.0.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: logger-0.4.0

logger Build Status

Morgan-inspired logging middleware for the Iron web framework.

Example

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.

  • Logger prints request and response information to the terminal, using either a default format or a custom format string.
  • Format strings can specify fields to be logged as well as ANSI terminal colors and attributes.

Installation

If you're using a Cargo.toml to manage dependencies, just add logger to the 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.