cs_log_file

one of the documented procedures in this installation of the ACS
Usage:
cs_log_file   { time "" }
What it does:
Returns a path to the clickstreaming log file (without the trailing date/hour if time is not set).
Defined in: /web/philip/tcl/1-cs-defs.tcl

Source code:


    if { $time != "" } {
	set ext ".[cs_format_log_file_date $time]"
    } else {
	set ext ""
    }

    return "[ad_parameter "Logfile" "cs/logging" "[file dirname [ns_info log]]/[ns_info server]-cs.log"]$ext"


philg@mit.edu