nlog 0.2.2

Log implementation that sends text to a Windows notepad window.
Documentation
# Nlog: Quick and Dirty logging for Windows

Nlog is an implementation of the [`log`][log] crate that sends text to an untitled Windows Notepad window.

```rust
#[macro_use]
extern crate log;

fn main() {
    nlog::init(log::LevelFilter::Info).unwrap();

    info!("Hello, world! λ");
}
```

<img src="assets/demo.png" alt="A Notepad window showing the above log message"></img>

# Features

* Unicode Support
* Thread-safe
* Works with Wine Notepad
* Completely WYSIWYG

# Why?

* Simple: Just open Notepad, copy or save logs as needed.
* Silent: No log files piling up
* Robust: Works even when no console or file I/O is available

# License

This project is licensed under the MIT license. See [LICENSE.txt](LICENSE.txt) for more information.

[log]: https://crates.io/crates/log