3 declare(strict_types=1);
7 include_once __DIR__ .
'/../../../libs/composer/vendor/autoload.php';
30 return $this->
getLogger()->isHandling($a_level);
35 $this->
getLogger()->log($a_level, $a_message);
45 $this->
log((
string) print_r($a_variable,
true), $a_level);
48 public function debug(
string $a_message, array $a_context = array()): void
50 $this->
getLogger()->debug($a_message, $a_context);
53 public function info(
string $a_message): void
58 public function notice(
string $a_message): void
63 public function warning(
string $a_message): void
68 public function error(
string $a_message): void
73 public function critical(
string $a_message): void
78 public function alert(
string $a_message): void
86 $this->
getLogger()->emergency($a_message);
106 $this->
getLogger()->log((
int) $a_level, $a_message);
115 $this->
getLogger()->debug(
"Language (" . $a_lang_key .
"): topic -" . $a_topic .
"- not present");
118 public function logStack(?
int $a_level = null,
string $a_message =
''): void
120 if (is_null($a_level)) {
130 throw new \Exception($a_message);
132 $this->
getLogger()->log($a_level, $a_message .
"\n" . $ex->getTraceAsString());
142 $this->
getLogger()->pushProcessor(
new MemoryPeakUsageProcessor());
143 $this->
getLogger()->log($a_level,
'Memory usage: ');
dump($a_variable, int $a_level=ilLogLevel::INFO)
isHandling(int $a_level)
Check whether current logger is handling a log level.
warning(string $a_message)
logStack(?int $a_level=null, string $a_message='')
critical(string $a_message)
debug(string $a_message, array $a_context=array())
write(string $a_message, $a_level=ilLogLevel::INFO)
write log message
writeLanguageLog(string $a_topic, string $a_lang_key)
Write language log.
log(string $a_message, int $a_level=ilLogLevel::INFO)
__construct(Logger $logger)
emergency(string $a_message)
notice(string $a_message)
writeMemoryPeakUsage(int $a_level)
Write memory peak usage Automatically called at end of script.