summaryrefslogtreecommitdiff
path: root/src/common/logging/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/logging/log.h')
-rw-r--r--src/common/logging/log.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/common/logging/log.h b/src/common/logging/log.h
index e12f47f8f..4d577524f 100644
--- a/src/common/logging/log.h
+++ b/src/common/logging/log.h
@@ -12,14 +12,14 @@ namespace Log {
12/// Specifies the severity or level of detail of the log message. 12/// Specifies the severity or level of detail of the log message.
13enum class Level : u8 { 13enum class Level : u8 {
14 Trace, ///< Extremely detailed and repetitive debugging information that is likely to 14 Trace, ///< Extremely detailed and repetitive debugging information that is likely to
15 /// pollute logs. 15 ///< pollute logs.
16 Debug, ///< Less detailed debugging information. 16 Debug, ///< Less detailed debugging information.
17 Info, ///< Status information from important points during execution. 17 Info, ///< Status information from important points during execution.
18 Warning, ///< Minor or potential problems found during execution of a task. 18 Warning, ///< Minor or potential problems found during execution of a task.
19 Error, ///< Major problems found during execution of a task that prevent it from being 19 Error, ///< Major problems found during execution of a task that prevent it from being
20 /// completed. 20 ///< completed.
21 Critical, ///< Major problems during execution that threathen the stability of the entire 21 Critical, ///< Major problems during execution that threaten the stability of the entire
22 /// application. 22 ///< application.
23 23
24 Count ///< Total number of logging levels 24 Count ///< Total number of logging levels
25}; 25};
@@ -49,7 +49,7 @@ enum class Class : ClassType {
49 Kernel, ///< The HLE implementation of the CTR kernel 49 Kernel, ///< The HLE implementation of the CTR kernel
50 Kernel_SVC, ///< Kernel system calls 50 Kernel_SVC, ///< Kernel system calls
51 Service, ///< HLE implementation of system services. Each major service 51 Service, ///< HLE implementation of system services. Each major service
52 /// should have its own subclass. 52 ///< should have its own subclass.
53 Service_ACC, ///< The ACC (Accounts) service 53 Service_ACC, ///< The ACC (Accounts) service
54 Service_AM, ///< The AM (Applet manager) service 54 Service_AM, ///< The AM (Applet manager) service
55 Service_AOC, ///< The AOC (AddOn Content) service 55 Service_AOC, ///< The AOC (AddOn Content) service