logging: Add WebService as a log cateogry.

This commit is contained in:
bunnei 2017-06-27 22:29:00 -04:00
parent 0f1ae781d0
commit f7a9d42592
2 changed files with 3 additions and 1 deletions

View File

@ -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) {

View File

@ -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
};