Log: document the LogLevel items

This commit is contained in:
Max Kellermann 2013-11-04 22:17:53 +01:00
parent 39257717d8
commit 6de85cb047

View File

@ -34,9 +34,25 @@ class Error;
class Domain;
enum class LogLevel {
/**
* Debug message for developers.
*/
DEBUG,
/**
* Unimportant informational message.
*/
INFO,
/**
* Warning: something may be wrong.
*/
WARNING,
/**
* An error has occurred, an operation could not finish
* successfully.
*/
ERROR,
};