Lugdunum
0.1.0
Main Page
+
Namespaces
Namespace List
+
Namespace Members
+
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
+
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
v
Variables
Typedefs
Enumerations
Enumerator
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
:
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
~
+
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
~
+
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
v
w
x
y
Typedefs
Enumerations
+
Related Functions
:
b
c
d
g
l
p
s
w
+
Files
File List
+
File Members
+
All
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
+
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
+
Macros
d
f
l
n
s
v
w
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
include
lug
System
Logger
LoggingFacility.hpp
Go to the documentation of this file.
1
#pragma once
2
3
#include <string>
4
#include <memory>
5
#include <unordered_map>
6
#include <
lug/System/Export.hpp
>
7
8
namespace
lug
{
9
namespace
System {
10
namespace
Logger {
11
12
class
Logger;
13
class
Handler;
14
15
class
LUG_SYSTEM_API
LoggingFacility
{
16
public
:
17
LoggingFacility
() =
delete
;
18
~
LoggingFacility
() =
delete
;
19
20
public
:
21
static
void
registerLogger(
const
std::string& loggerName, std::unique_ptr<Logger> logger);
22
static
Logger
* getLogger(
const
std::string& loggerName);
23
24
static
void
registerHandler(
const
std::string& handlerName, std::unique_ptr<Handler> handler);
25
static
Handler
* getHandler(
const
std::string& handlerName);
26
27
static
void
clear();
28
};
29
30
}
// Logger
31
}
// System
32
}
// lug
lug::System::Logger::Handler
Definition:
Handler.hpp:15
lug::System::Logger::LoggingFacility
Definition:
LoggingFacility.hpp:15
Export.hpp
LUG_SYSTEM_API
#define LUG_SYSTEM_API
Definition:
Export.hpp:11
lug::System::Logger::Logger
Definition:
Logger.hpp:18
lug
Definition:
Application.hpp:11
Generated by
1.8.13