ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
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
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
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
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
class.ilLogLevel.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
30
class
ilLogLevel
31
{
32
public
const
DEBUG
= 100;
33
public
const
INFO
= 200;
34
public
const
NOTICE
= 250;
35
public
const
WARNING
= 300;
36
public
const
ERROR
= 400;
37
public
const
CRITICAL
= 500;
38
public
const
ALERT
= 550;
39
public
const
EMERGENCY
= 600;
40
41
public
const
OFF
= 1000;
42
43
44
45
public
static
function
getLevels
(): array
46
{
47
return
array(
48
self::DEBUG
,
49
self::INFO,
50
self::NOTICE,
51
self::WARNING,
52
self::ERROR,
53
self::CRITICAL,
54
self::ALERT,
55
self::EMERGENCY,
56
self::OFF
57
);
58
}
59
60
61
public
static
function
getLevelOptions
(): array
62
{
63
global
$DIC
;
64
65
$lng
= $DIC->language();
66
return
array(
67
self::DEBUG
=>
$lng
->txt(
'log_level_debug'
),
68
self::INFO =>
$lng
->txt(
'log_level_info'
),
69
self::NOTICE =>
$lng
->txt(
'log_level_notice'
),
70
self::WARNING =>
$lng
->txt(
'log_level_warning'
),
71
self::ERROR =>
$lng
->txt(
'log_level_error'
),
72
self::CRITICAL =>
$lng
->txt(
'log_level_critical'
),
73
self::ALERT =>
$lng
->txt(
'log_level_alert'
),
74
self::EMERGENCY =>
$lng
->txt(
'log_level_emergency'
),
75
self::OFF =>
$lng
->txt(
'log_level_off'
)
76
);
77
}
78
}
ilLogLevel
ilLogLevel\CRITICAL
const CRITICAL
Definition:
class.ilLogLevel.php:37
ilLogLevel\getLevelOptions
static getLevelOptions()
Definition:
class.ilLogLevel.php:61
ilLogLevel\EMERGENCY
const EMERGENCY
Definition:
class.ilLogLevel.php:39
ilLogLevel\ERROR
const ERROR
Definition:
class.ilLogLevel.php:36
ilLogLevel\getLevels
static getLevels()
Definition:
class.ilLogLevel.php:45
ilLogLevel\ALERT
const ALERT
Definition:
class.ilLogLevel.php:38
ilLogLevel\INFO
const INFO
Definition:
class.ilLogLevel.php:33
ilLogLevel\WARNING
const WARNING
Definition:
class.ilLogLevel.php:35
ilLogLevel\OFF
const OFF
Definition:
class.ilLogLevel.php:41
$DIC
global $DIC
Definition:
shib_login.php:22
ilLogLevel\NOTICE
const NOTICE
Definition:
class.ilLogLevel.php:34
$lng
global $lng
Definition:
privfeed.php:31
ilLogLevel\DEBUG
const DEBUG
Definition:
class.ilLogLevel.php:32
ILIAS\MetaData\Editor\Http\DEBUG
Definition:
Command.php:32
components
ILIAS
Logging
classes
public
class.ilLogLevel.php
Generated on Wed Apr 2 2025 23:03:09 for ILIAS by
1.8.13 (using
Doxyfile
)