ILIAS
release_8 Revision v8.19
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
j
l
m
p
s
t
u
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
▼
ILIAS
Test List
Todo List
Deprecated List
►
Modules
►
Namespaces
►
Data Structures
▼
Files
►
File List
►
Globals
►
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilLogLevel.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
5
16
class
ilLogLevel
17
{
18
public
const
DEBUG
= 100;
19
public
const
INFO
= 200;
20
public
const
NOTICE
= 250;
21
public
const
WARNING
= 300;
22
public
const
ERROR
= 400;
23
public
const
CRITICAL
= 500;
24
public
const
ALERT
= 550;
25
public
const
EMERGENCY
= 600;
26
27
public
const
OFF
= 1000;
28
29
30
31
public
static
function
getLevels
(): array
32
{
33
return
array(
34
self::DEBUG,
35
self::INFO,
36
self::NOTICE,
37
self::WARNING,
38
self::ERROR,
39
self::CRITICAL,
40
self::ALERT,
41
self::EMERGENCY,
42
self::OFF
43
);
44
}
45
46
47
public
static
function
getLevelOptions
(): array
48
{
49
global
$DIC
;
50
51
$lng
= $DIC->language();
52
return
array(
53
self::DEBUG =>
$lng
->txt(
'log_level_debug'
),
54
self::INFO =>
$lng
->txt(
'log_level_info'
),
55
self::NOTICE =>
$lng
->txt(
'log_level_notice'
),
56
self::WARNING =>
$lng
->txt(
'log_level_warning'
),
57
self::ERROR =>
$lng
->txt(
'log_level_error'
),
58
self::CRITICAL =>
$lng
->txt(
'log_level_critical'
),
59
self::ALERT =>
$lng
->txt(
'log_level_alert'
),
60
self::EMERGENCY =>
$lng
->txt(
'log_level_emergency'
),
61
self::OFF =>
$lng
->txt(
'log_level_off'
)
62
);
63
}
64
}
ilLogLevel
Logging factory.
Definition:
class.ilLogLevel.php:16
ilLogLevel\CRITICAL
const CRITICAL
Definition:
class.ilLogLevel.php:23
$lng
$lng
Definition:
save_question_post_data.php:24
ilLogLevel\getLevelOptions
static getLevelOptions()
Definition:
class.ilLogLevel.php:47
ilLogLevel\EMERGENCY
const EMERGENCY
Definition:
class.ilLogLevel.php:25
ilLogLevel\ERROR
const ERROR
Definition:
class.ilLogLevel.php:22
ilLogLevel\getLevels
static getLevels()
Definition:
class.ilLogLevel.php:31
$DIC
global $DIC
Definition:
feed.php:28
ilLogLevel\ALERT
const ALERT
Definition:
class.ilLogLevel.php:24
ilLogLevel\INFO
const INFO
Definition:
class.ilLogLevel.php:19
ilLogLevel\WARNING
const WARNING
Definition:
class.ilLogLevel.php:21
ilLogLevel\OFF
const OFF
Definition:
class.ilLogLevel.php:27
ilLogLevel\NOTICE
const NOTICE
Definition:
class.ilLogLevel.php:20
ilLogLevel\DEBUG
const DEBUG
Definition:
class.ilLogLevel.php:18
Services
Logging
classes
public
class.ilLogLevel.php
Generated on Fri Apr 4 2025 22:02:48 for ILIAS by
1.8.13 (using
Doxyfile
)