From: akoszewski Date: Tue, 26 Jun 2018 12:43:14 +0000 (+0200) Subject: Change log message in realPath X-Git-Tag: submit/tizen/20180808.090732~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c200ccf99b97be7771ebfece2e9a7820e11a47ea;p=platform%2Fcore%2Fsecurity%2Fsecurity-manager.git Change log message in realPath Change log message in realPath function from error to warning Change-Id: I33adac5cc32b3ac36bb521d6825c59a14926575d --- diff --git a/src/common/service_impl.cpp b/src/common/service_impl.cpp index 084a4bf5..fe804363 100644 --- a/src/common/service_impl.cpp +++ b/src/common/service_impl.cpp @@ -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(); }