diff options
-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, }; |