README.md

# wolf

[![Package Version](https://img.shields.io/hexpm/v/wolf)](https://hex.pm/packages/wolf)
[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/wolf/)

```sh
gleam add wolf
```
```gleam
import wolf

pub fn main() {
  
  //This logs to the console
  wolf.warn("This is a warning message")
  wolf.error("This is an error message")

  //This logs to a file
  wolf.log_to_file("This is a log message", "log.txt", wolf.Warning)
}
```

Further documentation can be found at <https://hexdocs.pm/wolf>.

## Development

```sh
gleam run   # Run the project
gleam test  # Run the tests
gleam shell # Run an Erlang shell
```