Logger
It seems like we need to write our own logger for different reasons: 1. To write logs into files and not only to the console 2. When testing methods that include log messages with `Gdx.app` they fail because `Gdx.app` is `null`. This means we would need to start the game just to test anything.
issue