easylog 0.2.4

A simple and easy to use logging-crate
Documentation
.phony: all run clean test doc

run:
	cargo run

all:
	cargo build

test:
	echo "this is only a Testfile!" > testfile.txt
	cargo test
	rm testfile.txt

doc:
	cargo doc

clean:
	rm -rf ./target
	rm -f ./logfile_*