captains-log 0.15.4

A minimalist customizable logger for rust, based on the `log` crate, but also adapted to `tracing`, for production and testing scenario.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

make fmt || exit 1

# re add the files since changed by fmt
files=$(git diff --cached --name-only --diff-filter=ACM | grep '.rs$')
for f in $files; do
	echo "git add $f"
	git add $f
done
exit 0