Fix typo.

pull/3463/head
Kim Kulling 2020-10-22 22:26:03 +02:00 committed by GitHub
parent d48ac9d0a4
commit 8d7e5db98c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -73,9 +73,9 @@ public:
* @brief Log severity to describe the granularity of logging.
*/
enum LogSeverity {
NORMAL, //!< Normal granularity of logging
DEBUGING, //!< Debug messages will be logged, but not verbose debug messages.
VERBOSE //!< All messages will be logged
NORMAL, ///< Normal granularity of logging
DEBUGGING, ///< Debug messages will be logged, but not verbose debug messages.
VERBOSE ///< All messages will be logged
};
// ----------------------------------------------------------------------