15 lines
355 B
Plaintext
15 lines
355 B
Plaintext
# 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
|
|
}
|