Logger
It seems like we need to write our own logger for different reasons:
- To write logs into files and not only to the console
- When testing methods that include log messages with
Gdx.app
they fail becauseGdx.app
isnull
. This means we would need to start the game just to test anything.
Edited by Russ Henry