Log: document the LogLevel items
This commit is contained in:
parent
39257717d8
commit
6de85cb047
16
src/Log.hxx
16
src/Log.hxx
@ -34,9 +34,25 @@ class Error;
|
|||||||
class Domain;
|
class Domain;
|
||||||
|
|
||||||
enum class LogLevel {
|
enum class LogLevel {
|
||||||
|
/**
|
||||||
|
* Debug message for developers.
|
||||||
|
*/
|
||||||
DEBUG,
|
DEBUG,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Unimportant informational message.
|
||||||
|
*/
|
||||||
INFO,
|
INFO,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Warning: something may be wrong.
|
||||||
|
*/
|
||||||
WARNING,
|
WARNING,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An error has occurred, an operation could not finish
|
||||||
|
* successfully.
|
||||||
|
*/
|
||||||
ERROR,
|
ERROR,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user