Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
c689fe84
There was an error fetching the commit references. Please try again later.
Commit
c689fe84
authored
7 years ago
by
bunnei
Browse files
Options
Downloads
Patches
Plain Diff
logger: Add SET service logging category.
parent
fc1359dc
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/common/logging/backend.cpp
+3
-5
3 additions, 5 deletions
src/common/logging/backend.cpp
src/common/logging/log.h
+8
-10
8 additions, 10 deletions
src/common/logging/log.h
src/core/hle/service/set/set.cpp
+1
-1
1 addition, 1 deletion
src/core/hle/service/set/set.cpp
with
12 additions
and
16 deletions
src/common/logging/backend.cpp
+
3
−
5
View file @
c689fe84
...
...
@@ -33,19 +33,17 @@ namespace Log {
SUB(Kernel, SVC) \
CLS(Service) \
SUB(Service, ACC) \
SUB(Service, Audio) \
SUB(Service, AM) \
SUB(Service, APM) \
SUB(Service, SM) \
SUB(Service, FS) \
SUB(Service, GSP) \
SUB(Service, CFG) \
SUB(Service, DSP) \
SUB(Service, HID) \
SUB(Service, LM) \
SUB(Service, NIFM) \
SUB(Service, NVDRV) \
SUB(Service, PCTL) \
SUB(Service, Audio) \
SUB(Service, SET) \
SUB(Service, SM) \
SUB(Service, VI) \
CLS(HW) \
SUB(HW, Memory) \
...
...
This diff is collapsed.
Click to expand it.
src/common/logging/log.h
+
8
−
10
View file @
c689fe84
...
...
@@ -49,20 +49,18 @@ enum class Class : ClassType {
Kernel_SVC
,
///< Kernel system calls
Service
,
///< HLE implementation of system services. Each major service
/// should have its own subclass.
Service_ACC
,
///< The ACC (Account service) implementation
Service_AM
,
///< The AM (Applet manager service) implementation
Service_APM
,
///< The APM service implementation
Service_SM
,
///< The SRV (Service Directory) implementation
Service_FS
,
///< The FS (Filesystem) service implementation
Service_GSP
,
///< The GSP (GPU control) service
Service_CFG
,
///< The CFG (Configuration) service
Service_DSP
,
///< The DSP (DSP control) service
Service_ACC
,
///< The ACC (Accounts) service
Service_AM
,
///< The AM (Applet manager) service
Service_APM
,
///< The APM (Performance) service
Service_Audio
,
///< The Audio (Audio control) service
Service_FS
,
///< The FS (Filesystem) service
Service_HID
,
///< The HID (Human interface device) service
Service_LM
,
///< The LM (Logger) service
implementation
Service_LM
,
///< The LM (Logger) service
Service_NIFM
,
///< The NIFM (Network interface) service
Service_NVDRV
,
///< The NVDRV (Nvidia driver) service
Service_PCTL
,
///< The PCTL (Parental control) service
Service_Audio
,
///< The Audio (Audio control) service
Service_SET
,
///< The SET (Settings) service
Service_SM
,
///< The SM (Service manager) service
Service_VI
,
///< The VI (Video interface) service
HW
,
///< Low-level hardware emulation
HW_Memory
,
///< Memory-map and address translation
...
...
This diff is collapsed.
Click to expand it.
src/core/hle/service/set/set.cpp
+
1
−
1
View file @
c689fe84
...
...
@@ -24,7 +24,7 @@ void SET::GetAvailableLanguageCodes(Kernel::HLERequestContext& ctx) {
rb
.
Push
(
RESULT_SUCCESS
);
rb
.
Push
(
static_cast
<
u64
>
(
lang_codes
.
size
()));
LOG_WARNING
(
Service
,
"(STUBBED) called"
);
LOG_WARNING
(
Service
_SET
,
"(STUBBED) called"
);
}
SET
::
SET
(
const
char
*
name
)
:
ServiceFramework
(
name
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment