Proposal to change argument order in constructor to be consistent with stdlib #75
Closed
Description
Current constructor:
def __init__(self, fmt=None, datefmt=None, level_styles=None, field_styles=None, style=DEFAULT_FORMAT_STYLE):
The python standard lib expects the first three parameters to be fmt, datefmt, style
.
To make coloredlogs usable with the config system in the stdlib I like to propose to move the style
.