Reduce some Error log severities

There are instances of ERROR logs that would work better as WARNING or
DEBUG since they do not actually result in bailing early and returning
an error response.

Signed-off-by: Carson Labrado <clabrado@google.com>
Change-Id: I1e7bca0bb38487b26a4642ab72ce475170bb53c6
diff --git a/redfish-core/lib/managers.hpp b/redfish-core/lib/managers.hpp
index a114d44..c51a586 100644
--- a/redfish-core/lib/managers.hpp
+++ b/redfish-core/lib/managers.hpp
@@ -326,7 +326,7 @@
         {
             configRoot["Profile"] = currentProfile;
         }
-        BMCWEB_LOG_ERROR("profile = {} !", currentProfile);
+        BMCWEB_LOG_DEBUG("profile = {} !", currentProfile);
 
         for (const auto& pathPair : managedObj)
         {