aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-11-04 22:17:53 +0100
committerMax Kellermann <max@duempel.org>2013-11-04 22:17:53 +0100
commit6de85cb047b3859f0e1b6d6db86cb735882278c8 (patch)
tree77d12b3b98d7d5dd81ef7ef0a0dabc8a5f11ce02
parent39257717d83957c065c9fe501cbb8263bc6714a4 (diff)
downloadmpd-6de85cb047b3859f0e1b6d6db86cb735882278c8.tar.gz
mpd-6de85cb047b3859f0e1b6d6db86cb735882278c8.tar.xz
mpd-6de85cb047b3859f0e1b6d6db86cb735882278c8.zip
Log: document the LogLevel items
-rw-r--r--src/Log.hxx16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/Log.hxx b/src/Log.hxx
index f04406dc3..38bc4a829 100644
--- a/src/Log.hxx
+++ b/src/Log.hxx
@@ -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,
};