Getting Started 🥳
- We use Rust, please install Rust from here https://www.rust-lang.org/
- Please read the issues tab to see if your problem has been talked about before.
Making your first PR
Please make sure you:
Logging Levels
We use the following for logging:
- ERROR - Something is wrong and we need to fix it ASAP. Imagine if someone called you at 4am, that's what the ERROR level does.
- WARN - Something is wrong but we can fix it later, we should definitely take a look though.
- INFO - Something is wrong but the program fixed itself, it won't really cause much harm to us.
- DEBUG - Hard to define 🤷♀️
- TRACE - Every step of the program should be printed.