Change log level from warning to debug 34/316334/4
authorYonggoo Kang <ygace.kang@samsung.com>
Mon, 19 Aug 2024 12:16:47 +0000 (21:16 +0900)
committerYonggoo Kang <ygace.kang@samsung.com>
Tue, 20 Aug 2024 10:03:02 +0000 (10:03 +0000)
Change-Id: I99cfc4274dfa413b5f81f2bc7f2abef5d18a9327

srcs/client/client.cpp
srcs/server/socket-manager.cpp

index 2b5e2f4229ec784d0512a039de32527cf88ce339..969f5408e359f0f5b7a62b40b540bfe88f347772 100644 (file)
@@ -48,7 +48,7 @@ bool has_feature(const char *feature) {
     }
 
     if (!is_supported) {
-        LogWarning("Unsupported feature " << feature);
+        LogDebug("Unsupported feature " << feature);
         return false;
     }
     return true;
index 13728f68317eda667f425565243228b6ea0f4f8f..723a16caa52d084273eaf6a8053efd44e36e30fa 100644 (file)
@@ -297,7 +297,7 @@ int SocketManager::GetSocketFromSystemD(const ServiceDescription &desc)
         }
     }
 
-    LogWarning("There is no usable socket by systemd.");
+    LogDebug("There is no usable socket by systemd.");
     m_enableActivation = false;
     return -1;
 }
@@ -358,7 +358,7 @@ void SocketManager::CreateDomainSocket(const ServiceDescription &desc)
 
     if (-1 == sockfd)
     {
-        LogWarning("Creating domain socket");
+        LogDebug("Creating domain socket");
         sockfd = CreateDomainSocketHelp(desc);
     }