service: vi: Remove stubbed warning from GetManagerDisplayService

- The GetManagerDisplayService function in IApplicationDisplayService is fully implemented, so remove the stubbed warning and change the log level to DEBUG to match its implementation status.
This commit is contained in:
Zephyron 2025-01-20 16:03:43 +10:00
parent 5a1a2f3eca
commit 6d225eb94a

View file

@ -73,7 +73,7 @@ Result IApplicationDisplayService::GetSystemDisplayService(
Result IApplicationDisplayService::GetManagerDisplayService(
Out<SharedPointer<IManagerDisplayService>> out_manager_display_service) {
LOG_WARNING(Service_VI, "(STUBBED) called");
LOG_DEBUG(Service_VI, "called");
*out_manager_display_service = std::make_shared<IManagerDisplayService>(system, m_container);
R_SUCCEED();
}