What is the correct form to use log4php inside a class with functions?
<?php
include_once 'log4php-2.3.0/src/main/php/Logger.php';
class template
{
public static temp1;
public static temp2;
Logger::configure($path . '\commons\log4php-2.3.0\config.xml');
$log = Logger::getLogger('myLogger');
public static function example1()
{
}
public static function example2()
{
}
}
How can I call the $log->fatal($error);
line for example inside both functions? Should i redeclare the $log in each or how?