]> git.llucax.com Git - z.facultad/75.08/llamadas.git/commitdiff
Trunco logfile si se pasa del logsize
authorAlan Kennedy <kennedya@3dgames.com.ar>
Sun, 24 Oct 2004 03:24:17 +0000 (03:24 +0000)
committerAlan Kennedy <kennedya@3dgames.com.ar>
Sun, 24 Oct 2004 03:24:17 +0000 (03:24 +0000)
inst/antifraude.pl

index e2d09c1cb065228b2ed342d7fd18381cdc027faf..cdb843d526cd0c3c1765dc6ba8c28e6606b0daea 100644 (file)
@@ -82,8 +82,18 @@ sub logEntry {
        open(LOGFILE,">>$log") or die "No se pudo abrir el archivo de log";
        seek(LOGFILE,0,2);
        print LOGFILE "$commonstring - $logentry\n";
+       $filesize = tell(LOGFILE);
        close(LOGFILE);
 
+       # Chequeo el logsize y su lo supero me quedo con 100 lineas
+       if ($filesize > ($CONFDATA{logsize} * 1024 * 1024))
+       {
+               open(LOGFILE,"+<$log");
+               do ($line = <LOGFILE>) until $. == 100;
+               truncate(LOGFILE,tell(LOGFILE));
+               close(LOGFILE);
+       }
+
        if ($consoleout) { print("$logentry\n"); }
 }
 
@@ -98,8 +108,6 @@ sub badCall {
 sub checkUmbrales {
        local(*callfields) = $_[0];
        my $callsfile = $_[1];
-       print("Callfields: @callfields\n");
-       print("Callfile: $callsfile\n");
        my $matchedUmbral = 0;
        my $i = 0;