diff options
author | archshift <admin@archshift.com> | 2015-01-10 13:07:50 -0800 |
---|---|---|
committer | archshift <admin@archshift.com> | 2015-01-10 14:32:10 -0800 |
commit | 228843c43e21ce4d3ca5fe0adc96fcb34505446b (patch) | |
tree | b965681736fca204e49ea6f2c130409814c3006a /src/core/hle/svc.cpp | |
parent | 083072de56dacadbeba5f77b2773ea6f9e4b1ddd (diff) |
Logging: Log all called service functions (under trace). Compile out all trace logs under release for performance.
Diffstat (limited to 'src/core/hle/svc.cpp')
-rw-r--r-- | src/core/hle/svc.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp index ba620bd0f..d3b4483ca 100644 --- a/src/core/hle/svc.cpp +++ b/src/core/hle/svc.cpp @@ -185,7 +185,6 @@ static Result WaitSynchronizationN(s32* out, Handle* handles, s32 handle_count, /// Create an address arbiter (to allocate access to shared resources) static Result CreateAddressArbiter(u32* arbiter) { - LOG_TRACE(Kernel_SVC, "called"); Handle handle = Kernel::CreateAddressArbiter(); *arbiter = handle; return 0; |