├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── async-log-attributes ├── Cargo.toml ├── README.md └── src │ └── lib.rs ├── examples └── trace.rs ├── src ├── backtrace.rs ├── lib.rs ├── logger.rs └── macros.rs └── tests └── test.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-rs/async-log/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-rs/async-log/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-rs/async-log/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-rs/async-log/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-rs/async-log/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-rs/async-log/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-rs/async-log/HEAD/README.md -------------------------------------------------------------------------------- /async-log-attributes/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-rs/async-log/HEAD/async-log-attributes/Cargo.toml -------------------------------------------------------------------------------- /async-log-attributes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-rs/async-log/HEAD/async-log-attributes/README.md -------------------------------------------------------------------------------- /async-log-attributes/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-rs/async-log/HEAD/async-log-attributes/src/lib.rs -------------------------------------------------------------------------------- /examples/trace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-rs/async-log/HEAD/examples/trace.rs -------------------------------------------------------------------------------- /src/backtrace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-rs/async-log/HEAD/src/backtrace.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-rs/async-log/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-rs/async-log/HEAD/src/logger.rs -------------------------------------------------------------------------------- /src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-rs/async-log/HEAD/src/macros.rs -------------------------------------------------------------------------------- /tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-rs/async-log/HEAD/tests/test.rs --------------------------------------------------------------------------------