Some logging configuration fixes.

log_file_size is now in bytes only. megabytes are obsolete since we all have a calculator... ;)
This commit is contained in:
Johannes Findeisen 2022-10-06 23:14:28 +02:00
commit d179e478eb
2 changed files with 8 additions and 15 deletions

View file

@ -7,12 +7,9 @@ log_level= debug
log_file = ~/code/linspector/linspector/log/linspector.log
; number of log files to be kept. i recommend to use the lowest sensible value for keeping performance high. so set
; the size of the log file higher to increase the log history.
log_file_count = 5
; log file size in megabytes as float.
;log_file_size = 1
; log file size in bytes as int. you can set to bytes if you want to set a value lower then 1 megabyte. but it will
; only be used when log_file_size is not set.
;log_file_size_bytes = 10485760
log_file_count = 10
; log file size in bytes as int. the default is 10000000 bytes (10MiB) if not set here to a different value.
log_file_size = 1000000
pid_file = /var/run/user/1000/linspector.pid
; plugins separated by ','. no whitespaces allowed! not case sensitive.
plugins = Lish,HTTPServer