mirror of
https://github.com/opnsense/src.git
synced 2026-04-28 09:37:08 -04:00
15 lines
355 B
Text
15 lines
355 B
Text
|
|
# This program is used to compress log files
|
||
|
|
if {![info exists Log(compressProg)]} {
|
||
|
|
set Log(compressProg) gzip
|
||
|
|
}
|
||
|
|
|
||
|
|
# Flush interval
|
||
|
|
if {![info exists Log(flushInterval)]} {
|
||
|
|
set Log(flushInterval) [expr {60 * 1000}]
|
||
|
|
}
|
||
|
|
|
||
|
|
# This is used to turn on an alternate debug log file
|
||
|
|
if {![info exist Log(debug_log)]} {
|
||
|
|
set Log(debug_log) 0
|
||
|
|
}
|