mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	Merge pull request #2895 from FearlessTobi/debug-logs
service/acc: Lower log severity from INFO to DEBUG
This commit is contained in:
		
						commit
						e31c15606b
					
				@ -70,7 +70,7 @@ public:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
protected:
 | 
					protected:
 | 
				
			||||||
    void Get(Kernel::HLERequestContext& ctx) {
 | 
					    void Get(Kernel::HLERequestContext& ctx) {
 | 
				
			||||||
        LOG_INFO(Service_ACC, "called user_id={}", user_id.Format());
 | 
					        LOG_DEBUG(Service_ACC, "called user_id={}", user_id.Format());
 | 
				
			||||||
        ProfileBase profile_base{};
 | 
					        ProfileBase profile_base{};
 | 
				
			||||||
        ProfileData data{};
 | 
					        ProfileData data{};
 | 
				
			||||||
        if (profile_manager.GetProfileBaseAndData(user_id, profile_base, data)) {
 | 
					        if (profile_manager.GetProfileBaseAndData(user_id, profile_base, data)) {
 | 
				
			||||||
@ -89,7 +89,7 @@ protected:
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    void GetBase(Kernel::HLERequestContext& ctx) {
 | 
					    void GetBase(Kernel::HLERequestContext& ctx) {
 | 
				
			||||||
        LOG_INFO(Service_ACC, "called user_id={}", user_id.Format());
 | 
					        LOG_DEBUG(Service_ACC, "called user_id={}", user_id.Format());
 | 
				
			||||||
        ProfileBase profile_base{};
 | 
					        ProfileBase profile_base{};
 | 
				
			||||||
        if (profile_manager.GetProfileBase(user_id, profile_base)) {
 | 
					        if (profile_manager.GetProfileBase(user_id, profile_base)) {
 | 
				
			||||||
            IPC::ResponseBuilder rb{ctx, 16};
 | 
					            IPC::ResponseBuilder rb{ctx, 16};
 | 
				
			||||||
@ -263,7 +263,7 @@ private:
 | 
				
			|||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void Module::Interface::GetUserCount(Kernel::HLERequestContext& ctx) {
 | 
					void Module::Interface::GetUserCount(Kernel::HLERequestContext& ctx) {
 | 
				
			||||||
    LOG_INFO(Service_ACC, "called");
 | 
					    LOG_DEBUG(Service_ACC, "called");
 | 
				
			||||||
    IPC::ResponseBuilder rb{ctx, 3};
 | 
					    IPC::ResponseBuilder rb{ctx, 3};
 | 
				
			||||||
    rb.Push(RESULT_SUCCESS);
 | 
					    rb.Push(RESULT_SUCCESS);
 | 
				
			||||||
    rb.Push<u32>(static_cast<u32>(profile_manager->GetUserCount()));
 | 
					    rb.Push<u32>(static_cast<u32>(profile_manager->GetUserCount()));
 | 
				
			||||||
@ -272,7 +272,7 @@ void Module::Interface::GetUserCount(Kernel::HLERequestContext& ctx) {
 | 
				
			|||||||
void Module::Interface::GetUserExistence(Kernel::HLERequestContext& ctx) {
 | 
					void Module::Interface::GetUserExistence(Kernel::HLERequestContext& ctx) {
 | 
				
			||||||
    IPC::RequestParser rp{ctx};
 | 
					    IPC::RequestParser rp{ctx};
 | 
				
			||||||
    Common::UUID user_id = rp.PopRaw<Common::UUID>();
 | 
					    Common::UUID user_id = rp.PopRaw<Common::UUID>();
 | 
				
			||||||
    LOG_INFO(Service_ACC, "called user_id={}", user_id.Format());
 | 
					    LOG_DEBUG(Service_ACC, "called user_id={}", user_id.Format());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    IPC::ResponseBuilder rb{ctx, 3};
 | 
					    IPC::ResponseBuilder rb{ctx, 3};
 | 
				
			||||||
    rb.Push(RESULT_SUCCESS);
 | 
					    rb.Push(RESULT_SUCCESS);
 | 
				
			||||||
@ -280,21 +280,21 @@ void Module::Interface::GetUserExistence(Kernel::HLERequestContext& ctx) {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void Module::Interface::ListAllUsers(Kernel::HLERequestContext& ctx) {
 | 
					void Module::Interface::ListAllUsers(Kernel::HLERequestContext& ctx) {
 | 
				
			||||||
    LOG_INFO(Service_ACC, "called");
 | 
					    LOG_DEBUG(Service_ACC, "called");
 | 
				
			||||||
    ctx.WriteBuffer(profile_manager->GetAllUsers());
 | 
					    ctx.WriteBuffer(profile_manager->GetAllUsers());
 | 
				
			||||||
    IPC::ResponseBuilder rb{ctx, 2};
 | 
					    IPC::ResponseBuilder rb{ctx, 2};
 | 
				
			||||||
    rb.Push(RESULT_SUCCESS);
 | 
					    rb.Push(RESULT_SUCCESS);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void Module::Interface::ListOpenUsers(Kernel::HLERequestContext& ctx) {
 | 
					void Module::Interface::ListOpenUsers(Kernel::HLERequestContext& ctx) {
 | 
				
			||||||
    LOG_INFO(Service_ACC, "called");
 | 
					    LOG_DEBUG(Service_ACC, "called");
 | 
				
			||||||
    ctx.WriteBuffer(profile_manager->GetOpenUsers());
 | 
					    ctx.WriteBuffer(profile_manager->GetOpenUsers());
 | 
				
			||||||
    IPC::ResponseBuilder rb{ctx, 2};
 | 
					    IPC::ResponseBuilder rb{ctx, 2};
 | 
				
			||||||
    rb.Push(RESULT_SUCCESS);
 | 
					    rb.Push(RESULT_SUCCESS);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void Module::Interface::GetLastOpenedUser(Kernel::HLERequestContext& ctx) {
 | 
					void Module::Interface::GetLastOpenedUser(Kernel::HLERequestContext& ctx) {
 | 
				
			||||||
    LOG_INFO(Service_ACC, "called");
 | 
					    LOG_DEBUG(Service_ACC, "called");
 | 
				
			||||||
    IPC::ResponseBuilder rb{ctx, 6};
 | 
					    IPC::ResponseBuilder rb{ctx, 6};
 | 
				
			||||||
    rb.Push(RESULT_SUCCESS);
 | 
					    rb.Push(RESULT_SUCCESS);
 | 
				
			||||||
    rb.PushRaw<Common::UUID>(profile_manager->GetLastOpenedUser());
 | 
					    rb.PushRaw<Common::UUID>(profile_manager->GetLastOpenedUser());
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user