Change log message in realPath 18/182618/5
authorakoszewski <a.koszewski@samsung.com>
Tue, 26 Jun 2018 12:43:14 +0000 (14:43 +0200)
committerKrzysztof Jackiewicz <k.jackiewicz@samsung.com>
Fri, 29 Jun 2018 11:45:52 +0000 (11:45 +0000)
Change log message in realPath function from error to warning

Change-Id: I33adac5cc32b3ac36bb521d6825c59a14926575d

src/common/service_impl.cpp

index 084a4bf51f74e6e8e26eb543da8c2a7665bbbe70..fe804363bbb0a62e1af0bf01a3fd3828dc699f7a 100644 (file)
@@ -85,7 +85,7 @@ std::string realPath(const std::string &path)
 {
     auto real_pathPtr = makeUnique(realpath(path.c_str(), nullptr), free);
     if (!real_pathPtr) {
-        LogError("Error in realpath(): " << GetErrnoString(errno) << " for: " << path);
+        LogWarning("Error in realpath(): " << GetErrnoString(errno) << " for: " << path);
         return std::string();
     }