Просмотр исходного кода

srv: changed a NOTICE_LOG to DEBUG_LOG

bunnei 12 лет назад
Родитель
Сommit
b08b3c154f
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/core/hle/service/srv.cpp

+ 1 - 1
src/core/hle/service/srv.cpp

@@ -36,7 +36,7 @@ void GetServiceHandle(Service::Interface* self) {
     std::string port_name = std::string((const char*)&cmd_buff[1], 0, Service::kMaxPortSize);
     std::string port_name = std::string((const char*)&cmd_buff[1], 0, Service::kMaxPortSize);
     Service::Interface* service = Service::g_manager->FetchFromPortName(port_name);
     Service::Interface* service = Service::g_manager->FetchFromPortName(port_name);
 
 
-    NOTICE_LOG(OSHLE, "SRV::Sync - GetHandle - port: %s, handle: 0x%08X", port_name.c_str(), 
+    DEBUG_LOG(OSHLE, "SRV::Sync - GetHandle - port: %s, handle: 0x%08X", port_name.c_str(), 
         service->GetHandle());
         service->GetHandle());
 
 
     if (NULL != service) {
     if (NULL != service) {