Skip to content

Commit

Permalink
Increase the size of log files from 100 kilobytes to 1 megabyte, and …
Browse files Browse the repository at this point in the history
…the number of log backups from 1 to 2
  • Loading branch information
kozlovsky committed Jun 1, 2023
1 parent 3d88f2d commit 64bf940
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/tribler/core/logger/logger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ handlers:
level: INFO
formatter: standard
filename: TRIBLER_INFO_LOG_FILE
maxBytes: 102400 # 100KB
backupCount: 1
maxBytes: 1048576 # 1 megabyte
backupCount: 2
encoding: utf8
info_memory_handler:
Expand All @@ -33,8 +33,8 @@ handlers:
level: ERROR
formatter: error
filename: TRIBLER_ERROR_LOG_FILE
maxBytes: 102400 # 100KB
backupCount: 1
maxBytes: 1048576 # 1 megabyte
backupCount: 2
encoding: utf8
error_memory_handler:
Expand Down

0 comments on commit 64bf940

Please sign in to comment.