nercone-modern 1.11.0__tar.gz → 1.11.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {nercone_modern-1.11.0 → nercone_modern-1.11.2}/PKG-INFO +1 -1
- {nercone_modern-1.11.0 → nercone_modern-1.11.2}/pyproject.toml +1 -1
- {nercone_modern-1.11.0 → nercone_modern-1.11.2}/src/nercone_modern/logging.py +1 -2
- {nercone_modern-1.11.0 → nercone_modern-1.11.2}/README.md +0 -0
- {nercone_modern-1.11.0 → nercone_modern-1.11.2}/src/nercone_modern/__init__.py +0 -0
- {nercone_modern-1.11.0 → nercone_modern-1.11.2}/src/nercone_modern/__main__.py +0 -0
- {nercone_modern-1.11.0 → nercone_modern-1.11.2}/src/nercone_modern/color.py +0 -0
- {nercone_modern-1.11.0 → nercone_modern-1.11.2}/src/nercone_modern/progressbar.py +0 -0
- {nercone_modern-1.11.0 → nercone_modern-1.11.2}/src/nercone_modern/text.py +0 -0
|
@@ -45,11 +45,10 @@ def is_higher_priority(level_a: str, level_b: str) -> bool:
|
|
|
45
45
|
raise ValueError(f"Unknown log level: {level_a} or {level_b}")
|
|
46
46
|
|
|
47
47
|
class ModernLogging:
|
|
48
|
-
def __init__(self, process_name: str = "App", display_level: str = "INFO", filepath: str | None = None
|
|
48
|
+
def __init__(self, process_name: str = "App", display_level: str = "INFO", filepath: str | None = None):
|
|
49
49
|
self.process_name = process_name
|
|
50
50
|
self.display_level = display_level
|
|
51
51
|
self.filepath = filepath
|
|
52
|
-
self.short_mode = short_mode
|
|
53
52
|
global _max_proc_width
|
|
54
53
|
_max_proc_width = max(_max_proc_width, len(process_name))
|
|
55
54
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|