--- googlecode.com/svn/trunk/Meteor/Document.pm 2008/02/01 21:54:05 38 +++ googlecode.com/svn/trunk/Meteor/Document.pm 2008/02/04 21:06:42 47 @@ -55,6 +55,13 @@ $class->emitHeaderToClient($client,'404 Not Found'); $::Statistics->{'documents_not_found'}++; + &::syslog('info','', + 'document', + $relPath, + 0, + 404 + ); + return undef; } @@ -62,6 +69,13 @@ $::Statistics->{'documents_served'}++; + &::syslog('info','', + 'document', + $relPath, + $doc->{'size'}, + 200 + ); + $doc; }