Anpassung an LOG_PATH

This commit is contained in:
Andreas Österreicher
2007-01-08 16:32:10 +00:00
parent 76f1892f01
commit 87fe8cb18b
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -147,7 +147,7 @@ function writeCISlog($stat, $rm = '')
{
if($stat=='STOP')
$stat = 'STOP ';
$handle = fopen(CIS_LOG_PATH,'a');
$handle = fopen(LOG_PATH.'cis.log','a');
fwrite($handle, date('Y-m-d H:i:s').' '. $stat .' '. getmypid() .' '. $_SERVER['REMOTE_USER'] .' '. $_SERVER['REQUEST_URI'] .' '.$rm.'
');
}