/usr/share/serverstats/includes/logger_syslog.class.php is in serverstats 0.8.2-10.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | <?php
/**
* $Id$
*
* Author: David Danier, david.danier@team23.de
* Project: Serverstats, http://serverstats.berlios.de/
* License: GPL v2 or later (http://www.gnu.org/licenses/gpl.html)
*
* Copyright (C) 2005 David Danier
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
class logger_syslog extends logger
{
public function __construct($ident = 'Serverstats', $options = null, $facility = null)
{
// define_syslog_variables();
if (!isset($options))
{
$options = LOG_ODELAY || LOG_PID;
}
if (!isset($facility))
{
$facility = LOG_USER;
}
openlog($ident, $options, $facility);
}
public function __destruct()
{
// closelog();
/*
"The use of closelog() is optional."
Using closelog() I get this error here:
*** glibc detected *** double free or corruption (fasttop): 0xADDRESS ***
Abgebrochen
*/
}
static private function levelToSyslogLevel($loglevel)
{
switch ($loglevel)
{
case self::INFO:
return LOG_INFO;
case self::WARN:
return LOG_WARNING;
case self::ERR:
return LOG_ERR;
default:
/* Unknown Error, should be logged critical */
return LOG_CRIT;
}
}
public function logString($loglevel, $string)
{
if (!logger::needsLogging($loglevel)) return;
syslog(self::levelToSyslogLevel($loglevel), $string);
}
public function logException($loglevel, Exception $exception)
{
if (!logger::needsLogging($loglevel)) return;
syslog(self::levelToSyslogLevel($loglevel), $exception->__toString());
}
}
?>
|