aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/srv.cpp
diff options
context:
space:
mode:
authorGravatar archshift <admin@archshift.com>2015-01-10 13:07:50 -0800
committerGravatar archshift <admin@archshift.com>2015-01-10 14:32:10 -0800
commit228843c43e21ce4d3ca5fe0adc96fcb34505446b (patch)
treeb965681736fca204e49ea6f2c130409814c3006a /src/core/hle/service/srv.cpp
parent083072de56dacadbeba5f77b2773ea6f9e4b1ddd (diff)
Logging: Log all called service functions (under trace). Compile out all trace logs under release for performance.
Diffstat (limited to 'src/core/hle/service/srv.cpp')
-rw-r--r--src/core/hle/service/srv.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/hle/service/srv.cpp b/src/core/hle/service/srv.cpp
index 912b52ad..ac5f30a2 100644
--- a/src/core/hle/service/srv.cpp
+++ b/src/core/hle/service/srv.cpp
@@ -14,16 +14,12 @@ namespace SRV {
static Handle g_event_handle = 0;
static void Initialize(Service::Interface* self) {
- LOG_DEBUG(Service_SRV, "called");
-
u32* cmd_buff = Kernel::GetCommandBuffer();
cmd_buff[1] = 0; // No error
}
static void GetProcSemaphore(Service::Interface* self) {
- LOG_TRACE(Service_SRV, "called");
-
u32* cmd_buff = Kernel::GetCommandBuffer();
// TODO(bunnei): Change to a semaphore once these have been implemented