Nlog: Quick and Dirty logging for Windows

Nlog is an implementation of the 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! λ");

} ```

A Notepad window showing the above log message

Features

Why?

License

This project is licensed under the MIT license. See LICENSE.txt for more information.