Skip to content

Commit

Permalink
Fix syntax error in logging config
Browse files Browse the repository at this point in the history
Update to keep one backup and limit logs to 1M for proper rotation
  • Loading branch information
NeonDaniel committed Jul 5, 2024
1 parent a861753 commit ca5c8be
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions neon_core/configuration/mark_2/neon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,9 @@ log_dir: /home/neon/logs/
log_level: INFO
logs:
path: /home/neon/.local/state/neon/
max_bytes: 50000000
backup_count: 3
# 2M max size per log file to keep within the 10M log limit
max_bytes: 1048576
backup_count: 1
diagnostic: False
level_overrides:
error: []
Expand All @@ -161,11 +162,6 @@ logs:
- botocore
info: []
debug: []
logging:
# 2M max size per log file to keep within the 10M log limit
max_bytes: 2097152
# Backups count towards the cache limit too; skip any backups
backup_count: 0
debug: False
system_unit: imperial
system:
Expand Down

0 comments on commit ca5c8be

Please sign in to comment.