cs_archive_file

one of the documented procedures in this installation of the ACS
Usage:
cs_archive_file   { time "" }
What it does:
Returns a path to the archived log files, given a day
Defined in: /web/philip/tcl/1-cs-defs.tcl

Source code:


    if { $time != "" } {
	set ext ".[ns_fmttime $time "%Y-%m-%d"].gz"
    } else {
	set ext ""
    }
    
    return "[ad_parameter "ArchiveFile" "cs/logging" "[file dirname [ns_info log]]/[ns_info server]-cs.log"]$ext"



philg@mit.edu