diff options
author | bunnei <bunneidev@gmail.com> | 2021-12-07 23:31:44 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-07 23:31:44 -0800 |
commit | 5f7e73c74a4a15b7de907900e658b73ce37e743d (patch) | |
tree | 0d2eacb2472f9cd6638df461dc21be269a782bc7 /src/common/logging | |
parent | f6e8e61e3ef3bbac1f78e4bedf7383474da39adb (diff) | |
parent | ac1bfe228f688bb8eef38bdaf26011008891afdf (diff) |
Merge pull request #7525 from german77/notifa
service/notif: Add notif:a and stub ListAlarmSettings, Initialize
Diffstat (limited to 'src/common/logging')
-rw-r--r-- | src/common/logging/filter.cpp | 1 | ||||
-rw-r--r-- | src/common/logging/types.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/common/logging/filter.cpp b/src/common/logging/filter.cpp index 42744c994..b898a652c 100644 --- a/src/common/logging/filter.cpp +++ b/src/common/logging/filter.cpp @@ -114,6 +114,7 @@ bool ParseFilterRule(Filter& instance, Iterator begin, Iterator end) { SUB(Service, NGCT) \ SUB(Service, NIFM) \ SUB(Service, NIM) \ + SUB(Service, NOTIF) \ SUB(Service, NPNS) \ SUB(Service, NS) \ SUB(Service, NVDRV) \ diff --git a/src/common/logging/types.h b/src/common/logging/types.h index 2d21fc483..9ed0c7ad6 100644 --- a/src/common/logging/types.h +++ b/src/common/logging/types.h @@ -82,6 +82,7 @@ enum class Class : u8 { Service_NGCT, ///< The NGCT (No Good Content for Terra) service Service_NIFM, ///< The NIFM (Network interface) service Service_NIM, ///< The NIM service + Service_NOTIF, ///< The NOTIF (Notification) service Service_NPNS, ///< The NPNS service Service_NS, ///< The NS services Service_NVDRV, ///< The NVDRV (Nvidia driver) service |