mirror of
https://github.com/Retropex/raspiblitz.git
synced 2025-05-13 03:30:49 +02:00
fix maxBytes
This commit is contained in:
parent
626ace14fd
commit
034460f058
@ -5,7 +5,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
## [0.48.0] - 2020-05-30
|
## [0.48.1] - 2020-05-30
|
||||||
### Add
|
### Add
|
||||||
- move log file to /var/cache/raspiblitz/ if it exists
|
- move log file to /var/cache/raspiblitz/ if it exists
|
||||||
|
|
||||||
|
@ -44,7 +44,7 @@ def setup_logging(default_path=os.path.abspath(os.path.expanduser('~/.blitz-tui.
|
|||||||
'level': log_level,
|
'level': log_level,
|
||||||
'formatter': 'extended',
|
'formatter': 'extended',
|
||||||
'filename': log_file,
|
'filename': log_file,
|
||||||
# 'maxBytes': 2*1024*1024, # 2 MB
|
'maxBytes': 2*1024*1024, # 2 MB
|
||||||
'backupCount': 1,
|
'backupCount': 1,
|
||||||
'encoding': 'utf8'}},
|
'encoding': 'utf8'}},
|
||||||
loggers={'infoblitz': {'level': 'DEBUG',
|
loggers={'infoblitz': {'level': 'DEBUG',
|
||||||
|
@ -4,5 +4,5 @@
|
|||||||
# 3) we can import it into your module module
|
# 3) we can import it into your module module
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__version_info__ = ('0', '48', '0')
|
__version_info__ = ('0', '48', '1')
|
||||||
__version__ = '.'.join(__version_info__)
|
__version__ = '.'.join(__version_info__)
|
||||||
|
BIN
home.admin/BlitzTUI/dist/BlitzTUI-0.48.1-py2.py3-none-any.whl
vendored
Normal file
BIN
home.admin/BlitzTUI/dist/BlitzTUI-0.48.1-py2.py3-none-any.whl
vendored
Normal file
Binary file not shown.
BIN
home.admin/BlitzTUI/dist/BlitzTUI-0.48.1.tar.gz
vendored
Normal file
BIN
home.admin/BlitzTUI/dist/BlitzTUI-0.48.1.tar.gz
vendored
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user