File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,6 +6,14 @@ Help this project by [Donation](DONATE.md)
66Changes
77-----------
88
9+ ### 2.8.0
10+
11+ + Update python version
12+ + Renamed ` crash_report.log ` to ` .crash_report.log ` .
13+ + Added "force" error handling method to ` Logger.add_level ` .
14+ + Changed the adding level error handling method to "ignore".
15+ + Ability to add new methods to the Logger object for each custom level.
16+
917### 2.8.0b1
1018
1119+ Renamed ` crash_report.log ` to ` .crash_report.log ` .
Original file line number Diff line number Diff line change 186186 same "printed page" as the copyright notice for easier
187187 identification within third-party archives.
188188
189- Copyright [2021-2023 ] [CodeWriter21]
189+ Copyright [2021-2024 ] [CodeWriter21]
190190
191191 Licensed under the Apache License, Version 2.0 (the "License");
192192 you may not use this file except in compliance with the License.
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ Features
1818 modifications. It can also decolorize the output if you want to log into a file.
1919+ Pretty printing : Have you ever wanted to colorize the output of the pprint module? log21's pretty printer can do
2020 that.
21- + Tree printing : You can pass a dict or list to log21.tree_print function and it will print it in a tree-like
21+ + Tree printing : You can pass a dict or list to ` log21.tree_print ` function and it will print it in a tree-like
2222 structure. It's also colorized XD.
2323+ ProgressBar : log21's progress bar can be used to show progress of a process in a beautiful way.
2424+ LoggingWindow : Helps you to log messages and debug your code in a window other than the console.
@@ -61,9 +61,13 @@ pip install git+https://github.com/MPCodeWriter21/log21
6161Changes
6262-------
6363
64- ### 2.8.0b1
64+ ### 2.8.0
6565
66+ + Update python version
6667+ Renamed ` crash_report.log ` to ` .crash_report.log ` .
68+ + Added "force" error handling method to ` Logger.add_level ` .
69+ + Changed the adding level error handling method to "ignore".
70+ + Ability to add new methods to the Logger object for each custom level.
6771
6872[ Full CHANGELOG] ( https://github.com/MPCodeWriter21/log21/blob/master/CHANGELOG.md )
6973
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ dependencies = [
2626 " webcolors" ,
2727 " docstring-parser"
2828]
29- version = " 2.8.0b1 "
29+ version = " 2.8.0 "
3030
3131[tool .setuptools .packages .find ]
3232where = [" src" ]
Original file line number Diff line number Diff line change 2323from log21 .LoggingWindow import LoggingWindow , LoggingWindowHandler
2424from log21 .StreamHandler import StreamHandler , ColorizingStreamHandler
2525
26- __version__ = "2.8.0b1 "
26+ __version__ = "2.8.0 "
2727__author__ = "CodeWriter21 (Mehrad Pooryoussof)"
2828__github__ = "Https://GitHub.com/MPCodeWriter21/log21"
2929__all__ = [
You can’t perform that action at this time.
0 commit comments