Skip to content

lyddonb/logger

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

92 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

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

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.

About

Morgan-inspired request logger middleware for Iron

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 100.0%