├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE ├── README.md ├── examples ├── default.rs └── formatstring.rs └── src ├── format.rs └── lib.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron/logger/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron/logger/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron/logger/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron/logger/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron/logger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron/logger/HEAD/README.md -------------------------------------------------------------------------------- /examples/default.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron/logger/HEAD/examples/default.rs -------------------------------------------------------------------------------- /examples/formatstring.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron/logger/HEAD/examples/formatstring.rs -------------------------------------------------------------------------------- /src/format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron/logger/HEAD/src/format.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron/logger/HEAD/src/lib.rs --------------------------------------------------------------------------------