v0.0.4
Changelog for Logly
Version 0.0.4
Added
- Added a new log level: "LOG."
- Introduced a class attribute controlling the default Colorama behavior (
DEFAULT_COLOR_ENABLED
). - Support Single Message Parameters as value
- you can disable color for specific log messages and also block logs
- fixed some issues
- now you can enable and disable show timestamp for each log messages
- disable timestamp default by
logly = Logly(show_time=False)
Modified
- Modified the constructor (
__init__
method) to accept an additional parameter,color_enabled
, allowing users to specify the default state of Colorama. - Modified the
_log
method to accept an additional parameter,color_enabled
, enabling users to control color settings for individual log entries. - Modified the
log_function
method to accept an additional parameter,color_enabled
, providing flexibility for color settings in log entries. - Enhanced color handling logic to handle color settings for log entries based on the provided parameters.
- Minor changes to improve code readability, formatting, and comments.
Full Changelog: 0.0.3...0.0.4