diff options
author | Max Kellermann <max@duempel.org> | 2013-11-04 22:17:53 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-11-04 22:17:53 +0100 |
commit | 6de85cb047b3859f0e1b6d6db86cb735882278c8 (patch) | |
tree | 77d12b3b98d7d5dd81ef7ef0a0dabc8a5f11ce02 /src/Log.hxx | |
parent | 39257717d83957c065c9fe501cbb8263bc6714a4 (diff) | |
download | mpd-6de85cb047b3859f0e1b6d6db86cb735882278c8.tar.gz mpd-6de85cb047b3859f0e1b6d6db86cb735882278c8.tar.xz mpd-6de85cb047b3859f0e1b6d6db86cb735882278c8.zip |
Log: document the LogLevel items
Diffstat (limited to '')
-rw-r--r-- | src/Log.hxx | 16 |
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, }; |