Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

log21

Package Overview
Dependencies
Maintainers
1
Versions
81
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

log21 - npm Package Compare versions

Comparing version
2.8.1b0
to
2.8.1
+6
-3
PKG-INFO
Metadata-Version: 2.1
Name: log21
Version: 2.8.1b0
Version: 2.8.1
Summary: A simple logging package that helps you log colorized messages in Windows console.

@@ -95,5 +95,8 @@ Author-email: "CodeWriter21(Mehrad Pooryoussof)" <CodeWriter21@gmail.com>

### 2.8.1b0
### 2.8.1
+ Fixed Carriage Return Handling.
+ Fixed setting level using `log21.basic_config`
+ Added more configuration for developer tools to the `pyproject.toml` file.
+ Added pre-commit.

@@ -237,3 +240,3 @@ [Full CHANGELOG](https://github.com/MPCodeWriter21/log21/blob/master/CHANGELOG.md)

# See more examples in
# See more examples in
# https://github.com/MPCodeWriter21/log21/blob/066efc1e72542531012d36974bbf6cd4c5941378/log21/LoggingWindow.py#L155

@@ -240,0 +243,0 @@ # and

@@ -29,3 +29,3 @@ [build-system]

]
version = "2.8.1b0"
version = "2.8.1"

@@ -66,2 +66,8 @@ [tool.setuptools.packages.find]

combine_as_imports = true
length_sort = true
order_by_type = true
[tool.docformatter]
recursive = true
wrap-summaries = 88
wrap-descriptions = 88

@@ -64,5 +64,8 @@ log21

### 2.8.1b0
### 2.8.1
+ Fixed Carriage Return Handling.
+ Fixed setting level using `log21.basic_config`
+ Added more configuration for developer tools to the `pyproject.toml` file.
+ Added pre-commit.

@@ -206,3 +209,3 @@ [Full CHANGELOG](https://github.com/MPCodeWriter21/log21/blob/master/CHANGELOG.md)

# See more examples in
# See more examples in
# https://github.com/MPCodeWriter21/log21/blob/066efc1e72542531012d36974bbf6cd4c5941378/log21/LoggingWindow.py#L155

@@ -209,0 +212,0 @@ # and

Metadata-Version: 2.1
Name: log21
Version: 2.8.1b0
Version: 2.8.1
Summary: A simple logging package that helps you log colorized messages in Windows console.

@@ -95,5 +95,8 @@ Author-email: "CodeWriter21(Mehrad Pooryoussof)" <CodeWriter21@gmail.com>

### 2.8.1b0
### 2.8.1
+ Fixed Carriage Return Handling.
+ Fixed setting level using `log21.basic_config`
+ Added more configuration for developer tools to the `pyproject.toml` file.
+ Added pre-commit.

@@ -237,3 +240,3 @@ [Full CHANGELOG](https://github.com/MPCodeWriter21/log21/blob/master/CHANGELOG.md)

# See more examples in
# See more examples in
# https://github.com/MPCodeWriter21/log21/blob/066efc1e72542531012d36974bbf6cd4c5941378/log21/LoggingWindow.py#L155

@@ -240,0 +243,0 @@ # and

@@ -26,5 +26,4 @@ # log21.__init__.py

__version__ = "2.8.1b0"
__author__ = "CodeWriter21 (Mehrad Pooryoussof)"
__github__ = "Https://GitHub.com/MPCodeWriter21/log21"
__author__ = 'CodeWriter21 (Mehrad Pooryoussof)'
__github__ = 'Https://GitHub.com/MPCodeWriter21/log21'
__all__ = [

@@ -36,5 +35,5 @@ 'ColorizingStreamHandler', 'DecolorizingFileHandler', 'ColorizingFormatter',

'pformat', 'pprint', 'pretty_print', 'tree_format', 'TreePrint', 'Manager',
'get_color_name', 'closest_color', 'ansi_escape', '__version__', '__author__',
'__github__', 'debug', 'info', 'warning', 'warn', 'error', 'critical', 'fatal',
'exception', 'log', 'basic_config', 'basicConfig', 'ProgressBar', 'progress_bar',
'get_color_name', 'closest_color', 'ansi_escape', '__author__', '__github__',
'debug', 'info', 'warning', 'warn', 'error', 'critical', 'fatal', 'exception',
'log', 'basic_config', 'basicConfig', 'ProgressBar', 'progress_bar',
'LoggingWindow', 'LoggingWindowHandler', 'get_logging_window', 'CrashReporter',

@@ -51,3 +50,3 @@ 'console_reporter', 'file_reporter', 'argumentify'

style: str = '%',
datefmt: str = "%H:%M:%S",
datefmt: str = '%H:%M:%S',
show_level: bool = True,

@@ -63,7 +62,7 @@ show_time: bool = True,

style = '%'
fmt = "%(message)s"
fmt = '%(message)s'
if show_level:
fmt = "[%(levelname)s] " + fmt
fmt = '[%(levelname)s] ' + fmt
if show_time:
fmt = "[%(asctime)s] " + fmt
fmt = '[%(asctime)s] ' + fmt
fmt = '\r' + fmt

@@ -108,3 +107,3 @@

fmt: _Optional[str] = None,
datefmt: str = "%H:%M:%S",
datefmt: str = '%H:%M:%S',
style: str = '%',

@@ -217,3 +216,3 @@ handle_carriage_return: bool = True,

fmt: _Optional[str] = None,
datefmt: str = "%H:%M:%S",
datefmt: str = '%H:%M:%S',
style: str = '%',

@@ -430,3 +429,3 @@ handle_carriage_return: bool = True,

filemode: str = 'a',
date_format: str = "%H:%M:%S",
date_format: str = '%H:%M:%S',
style: str = '%',

@@ -433,0 +432,0 @@ format_: _Optional[str] = None,