ceethane 0.1.0

A logging crate designed to make it easy to inject and pass contextual information to log lines
Documentation
1
2
3
4
5
6
7
8
9
10
.PHONY: all build test-examples
all: build test-examples

build:
	cargo build

test-examples:
	cargo run --example basic | grep -i 'hello' | grep -i '1337'
	cargo run --example err | grep -i 'oh no' | grep -i 'Kind: Other'
	cargo run --example fake_web_app | grep -i 'started' | grep -i '32'