Add a README

This commit is contained in:
Alex Crichton
2014-12-13 13:49:39 -08:00
parent b18443e6eb
commit 5281d0c76f
+23
View File
@@ -0,0 +1,23 @@
log
===
A Rust library for application logging via debug/info/warn/error macros
[![Build Status](https://travis-ci.org/rust-lang/log.svg?branch=master)](https://travis-ci.org/rust-lang/log)
[Documentation](http://doc.rust-lang.org/log)
## Usage
Add this to your `Cargo.toml`:
```toml
[dependencies]
log = "0.1.0"
```
and this to your crate root:
```rust
extern crate log;
```