Commit 6de85cb0 authored by Max Kellermann's avatar Max Kellermann

Log: document the LogLevel items

parent 39257717
...@@ -34,9 +34,25 @@ class Error; ...@@ -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,
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment