README.md
# IntoLog
[![CI](https://github.com/grantwest/intolog/actions/workflows/ci.yml/badge.svg)](https://github.com/grantwest/intolog/actions/workflows/ci.yml)
Collectable protocol for Logging, allowing a logger to be
passed anywhere a Collectable is accepted.
```elixir
require IntoLog
System.cmd("echo", ["hello"], into: IntoLog.log(:info))
# Produces this log output:
09:24:42.866 [info] hello
```
## License
intolog source code is released under Apache License 2.0.
Check LICENSE file for more information.