Difference between revisions of "PHPLights/Documentation/liblights/LsLoggerSystem"
From Linuxnetworks
< PHPLights | Documentation | liblights
(initial) |
(update) |
||
| Line 3: | Line 3: | ||
class LsLoggerSystem | class LsLoggerSystem | ||
extends [[PHPLights/Documentation/liblights/LsLogger|LsLogger]] | extends [[PHPLights/Documentation/liblights/LsLogger|LsLogger]] | ||
| − | implements [[PHPLights/Documentation/Interfaces/LsSingletonIface|LsSingletonIface]] | + | implements [[PHPLights/Documentation/Interfaces/LsLoggerIface|LsLoggerIface]], [[PHPLights/Documentation/Interfaces/LsSingletonIface|LsSingletonIface]] |
{ | { | ||
| − | public static function getInstance | + | public static function getInstance() |
public function log( $message, $level = [[PHPLights/Documentation/liblights/LsLogger|LsLogger]]::Error ) | public function log( $message, $level = [[PHPLights/Documentation/liblights/LsLogger|LsLogger]]::Error ) | ||
} | } | ||
| Line 15: | Line 15: | ||
=== getInstance() === | === getInstance() === | ||
| − | public static function getInstance | + | public static function getInstance() |
=== log() === | === log() === | ||
Latest revision as of 16:41, 6 October 2007
Synopsis
class LsLoggerSystem extends LsLogger implements LsLoggerIface, LsSingletonIface { public static function getInstance() public function log( $message, $level = LsLogger::Error ) }
Description
Public functions
getInstance()
public static function getInstance()
log()
public function log( $message, $level = LsLogger::Error )
Back to Overview