dimanche 1 février 2015

declaring PHP variables for Log


Vote count:

0




I am getting error in below code, cause am not able to access $log in static function Log which gets initialized in _construct.


class Logger extends Singleton{



protected function __construct() {
if(!class_exists("Log")) {
include '/usr/php/Log.php';
}
$MONITORING_LOGFILE = "/var/log/Monitoring.log";

ini_set('error_log', 'syslog');
openlog($MONITORING_LOGFILE, LOG_NDELAY, LOG_LOCAL0);
$log = Log::singleton('syslog', LOG_LOCAL0, $MONITORING_LOGFILE, array('lineFormat' => ' %{message}'), PEAR_LOG_DEBUG);
}


public static function Log($message){
$log->err($message);
}


}



asked 2 mins ago







declaring PHP variables for Log

Aucun commentaire:

Enregistrer un commentaire