diff options
| author | bunnei <bunneidev@gmail.com> | 2018-11-29 00:58:46 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-29 00:58:46 -0500 |
| commit | 1e49a85106acdc596db9d1aeca31104fab9552a2 (patch) | |
| tree | 7e295e2921c61866371ac52d63a807782b1094b6 /src/core/hle/service/ns/ns.cpp | |
| parent | 5a9a84994a31ab72d2caab752ee2a3d02afc8133 (diff) | |
| parent | cc4521fc703e39e216efd57481cb4dbc76778264 (diff) | |
Merge pull request #1801 from ogniK5377/log-before-execute
Changed logging to be "Log before execution", Added more error logging, all services/svc should now log on some level
Diffstat (limited to 'src/core/hle/service/ns/ns.cpp')
| -rw-r--r-- | src/core/hle/service/ns/ns.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/service/ns/ns.cpp b/src/core/hle/service/ns/ns.cpp index 1d2978f24..2663f56b1 100644 --- a/src/core/hle/service/ns/ns.cpp +++ b/src/core/hle/service/ns/ns.cpp @@ -433,11 +433,11 @@ public: private: template <typename T> void PushInterface(Kernel::HLERequestContext& ctx) { + LOG_DEBUG(Service_NS, "called"); + IPC::ResponseBuilder rb{ctx, 2, 0, 1}; rb.Push(RESULT_SUCCESS); rb.PushIpcInterface<T>(); - - LOG_DEBUG(Service_NS, "called"); } }; @@ -526,11 +526,11 @@ public: private: void OpenSystemUpdateControl(Kernel::HLERequestContext& ctx) { + LOG_DEBUG(Service_NS, "called"); + IPC::ResponseBuilder rb{ctx, 2, 0, 1}; rb.Push(RESULT_SUCCESS); rb.PushIpcInterface<ISystemUpdateControl>(); - - LOG_DEBUG(Service_NS, "called"); } }; |
