logging: Add WebService as a log cateogry.
This commit is contained in:
parent
0f1ae781d0
commit
f7a9d42592
|
@ -73,7 +73,8 @@ namespace Log {
|
|||
SUB(Audio, Sink) \
|
||||
CLS(Input) \
|
||||
CLS(Network) \
|
||||
CLS(Loader)
|
||||
CLS(Loader) \
|
||||
CLS(WebService)
|
||||
|
||||
// GetClassName is a macro defined by Windows.h, grrr...
|
||||
const char* GetLogClassName(Class log_class) {
|
||||
|
|
|
@ -91,6 +91,7 @@ enum class Class : ClassType {
|
|||
Loader, ///< ROM loader
|
||||
Input, ///< Input emulation
|
||||
Network, ///< Network emulation
|
||||
WebService, ///< Interface to Citra Web Services
|
||||
Count ///< Total number of logging classes
|
||||
};
|
||||
|
||||
|
|
Reference in New Issue