py.lib.aw_log
9:e673daec06dc Browse Files
.. 1.202606.3 . Смешанный приоритет при выводе сообщения о исключении
setup.py src/aw_log/__init__.py
1.1 --- a/setup.py Tue Jun 23 15:32:27 2026 +0300 1.2 +++ b/setup.py Tue Jun 23 15:44:20 2026 +0300 1.3 @@ -3,7 +3,7 @@ 1.4 1.5 setup( 1.6 name='aw_log', 1.7 - version='1.202606.2', 1.8 + version='1.202606.3', 1.9 packages=['aw_log'], 1.10 package_dir={'aw_log': 'src/aw_log'}, 1.11 description='Реализация журналирования'
2.1 --- a/src/aw_log/__init__.py Tue Jun 23 15:32:27 2026 +0300 2.2 +++ b/src/aw_log/__init__.py Tue Jun 23 15:44:20 2026 +0300 2.3 @@ -120,7 +120,7 @@ 2.4 self.alert(f'File: {_tb_file}, line {_tb_line} in {_tb_func}') 2.5 self.alert(f' {_tb_text}') 2.6 2.7 - self.err('>>> Exception Handler <<<') 2.8 + self.alert('>>> Exception Handler <<<') 2.9 for _tb_file, _tb_line, _tb_func, _tb_text in tb_data_stack: 2.10 self.alert(f'File: {_tb_file}, line {_tb_line} in {_tb_func}') 2.11 self.alert(f' {_tb_text}')