Correct Manager LogService Collection permission

Both are the login Privilege so this has no client impact.

From redfish-core/include/registries/privilege_registry.hpp:
const auto& getLogServiceCollection = privilegeSetLogin;
const auto& getLogService = privilegeSetLogin;

From https://redfish.dmtf.org/schemas/v1/LogServiceCollection_v1.xml:
<String>/redfish/v1/Managers/{ManagerId}/LogServices</String>

Tested: None.

Change-Id: Ie836e2fa9bc841f16e1d6c6104c6d474751c5a09
Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
diff --git a/redfish-core/lib/log_services.hpp b/redfish-core/lib/log_services.hpp
index 9053fa1..dad63a5 100644
--- a/redfish-core/lib/log_services.hpp
+++ b/redfish-core/lib/log_services.hpp
@@ -1803,7 +1803,7 @@
 inline void requestRoutesBMCLogServiceCollection(App& app)
 {
     BMCWEB_ROUTE(app, "/redfish/v1/Managers/bmc/LogServices/")
-        .privileges(redfish::privileges::getLogService)
+        .privileges(redfish::privileges::getLogServiceCollection)
         .methods(boost::beast::http::verb::get)(
             [](const crow::Request&,
                const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) {