65 bool $a_enabled =
true,
66 ?
int $a_log_level =
null 75 $this->current_log_level = $this->
setLogLevel($a_log_level ?? $this->default_log_level);
77 $this->path = ($a_log_path) ?: ILIAS_ABSOLUTE_PATH;
78 $this->filename = ($a_log_file) ?:
"ilias.log";
79 $this->tag = ($a_tag ==
"") ?
"unknown" : $a_tag;
80 $this->enabled = $a_enabled;
81 $this->
setLogFormat(date(
"[y-m-d H:i:s] ") .
"[" . $this->tag .
"] ");
87 switch (strtolower($a_log_level)) {
104 if (empty($a_log_level)) {
107 $level = (
int) $a_log_level;
108 if ($a_log_level != (
int) $a_log_level) {
116 $this->log_format = $a_format;
126 $this->path = $a_str;
137 $this->filename = $a_str;
146 public function setTag(
string $a_str): void
161 $this->
write(
"Language (" . $a_lang_key .
"): topic -" . $a_topic .
"- not present", $this->MESSAGE);
169 $this->
write(
"WARNING: " . $a_message);
176 public function logError(
string $a_code,
string $a_msg): void
183 $error_level =
"warning";
187 $error_level =
"fatal";
191 $error_level =
"unknown";
194 $this->
write(
"ERROR (" . $error_level .
"): " . $a_msg);
211 public function write(
string $a_msg, $a_log_level =
null): void
213 $a_log_level = (
int) $a_log_level;
214 if ($this->enabled and $this->current_log_level >= $this->
checkLogLevel($a_log_level)) {
217 if ($this->fp ==
false) {
221 if (fwrite($this->fp, $this->
getLogFormat() . $a_msg .
"\n") == -1) {
227 if ($a_log_level == $this->FATAL) {
233 public function logStack(
string $a_message =
''): void
238 $this->
write($e->getTraceAsString());
242 public function dump($a_var, ?
int $a_log_level =
null): void
244 $this->
write(print_r($a_var,
true), $a_log_level);
253 $this->fp = @fopen($this->path .
"/" . $this->filename,
"a");
256 if (!$this->fp && $this->enabled) {
257 throw new ilLogException(
'Unable to open log file for writing. Please check setup path to log file and possible write access.');
264 public function delete():
void 266 if (is_file($this->path .
"/" . $this->filename)) {
267 unlink($this->path .
"/" . $this->filename);
dump($a_var, ?int $a_log_level=null)
logError(string $a_code, string $a_msg)
this function is automatically called by class.ilErrorHandler in case of an error To log manually ple...
ILIAS Log exception class.
setLogFormat(string $a_format)
setFilename(string $a_str)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(string $a_log_path, string $a_log_file, string $a_tag="", bool $a_enabled=true, ?int $a_log_level=null)
logStack(string $a_message='')
checkLogLevel($a_log_level)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
int $FATAL
Log level 10: Log only fatal errors that could lead to serious problems.
writeLanguageLog(string $a_topic, string $a_lang_key)
special language checking routine
int $WARNING
Log level 20: This is the standard log level that is set if no level is given.
writeWarning(string $a_message)
special warning message
int $MESSAGE
Log level 30: Logs messages and notices that are less important for system functionality like not tra...
setLogLevel(int $a_log_level)
write(string $a_msg, $a_log_level=null)
logging