projects
/
platform
/
core
/
security
/
security-manager.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a3f632d
)
Change log message in realPath
18/182618/5
author
akoszewski
<a.koszewski@samsung.com>
Tue, 26 Jun 2018 12:43:14 +0000
(14:43 +0200)
committer
Krzysztof 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
patch
|
blob
|
history
diff --git
a/src/common/service_impl.cpp
b/src/common/service_impl.cpp
index 084a4bf51f74e6e8e26eb543da8c2a7665bbbe70..fe804363bbb0a62e1af0bf01a3fd3828dc699f7a 100644
(file)
--- 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) {
- Log
Error
("Error in realpath(): " << GetErrnoString(errno) << " for: " << path);
+ Log
Warning
("Error in realpath(): " << GetErrnoString(errno) << " for: " << path);
return std::string();
}