fix maxBytes

This commit is contained in:
Robert Habermann 2020-05-30 14:04:35 +02:00
parent 626ace14fd
commit 034460f058
5 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.48.0] - 2020-05-30
## [0.48.1] - 2020-05-30
### Add
- move log file to /var/cache/raspiblitz/ if it exists

View File

@ -44,7 +44,7 @@ def setup_logging(default_path=os.path.abspath(os.path.expanduser('~/.blitz-tui.
'level': log_level,
'formatter': 'extended',
'filename': log_file,
# 'maxBytes': 2*1024*1024, # 2 MB
'maxBytes': 2*1024*1024, # 2 MB
'backupCount': 1,
'encoding': 'utf8'}},
loggers={'infoblitz': {'level': 'DEBUG',

View File

@ -4,5 +4,5 @@
# 3) we can import it into your module module
"""
__version_info__ = ('0', '48', '0')
__version_info__ = ('0', '48', '1')
__version__ = '.'.join(__version_info__)

Binary file not shown.

Binary file not shown.