<?php
class SeasLog
{
public function __construct()
{
#SeasLog init
}
public function __destruct()
{
#SeasLog distroy
}
static public function setBasePath($basePath)
{
return TRUE;
}
static public function getBasePath()
{
return 'the base_path';
}
static public function setLogger($module)
{
return TRUE;
}
static public function getLastLogger()
{
return 'the lastLogger';
}
static public function analyzerCount($level = 'all',$log_path = '*')
{
return array();
}
static public function analyzerDetail($level = SEASLOG_INFO,$log_path = '*')
{
return array();
}
static public function getBuffer()
{
return array();
}
static public function flushBuffer()
{
return TRUE;
}
static public function debug($message,array $content = array(),$module = '')
{
#$level = SEASLOG_DEBUG
}
static public function info($message,array $content = array(),$module = '')
{
#$level = SEASLOG_INFO
}
static public function notice($message,array $content = array(),$module = '')
{
#$level = SEASLOG_NOTICE
}
static public function warning($message,array $content = array(),$module = '')
{
#$level = SEASLOG_WARNING
}
static public function error($message,array $content = array(),$module = '')
{
#$level = SEASLOG_ERROR
}
static public function critical($message,array $content = array(),$module = '')
{
#$level = SEASLOG_CRITICAL
}
static public function alert($message,array $content = array(),$module = '')
{
#$level = SEASLOG_ALERT
}
static public function emergency($message,array $content = array(),$module = '')
{
#$level = SEASLOG_EMERGENCY
}
static public function log($level,$message,array $content = array(),$module = '')
{
}
}