Open
Description
Level constants still have screaming CAPS such as:
static const Level FINEST = const Level('FINEST', 300);
Is there any plan to change that (or is this package to be deprecated) or would you accept any pull request on this. If yes would change be for the previous example:
static const Level finest = const Level('FINEST', 300);
or
static const Level finest = const Level('finest', 300);