projects
/
platform
/
core
/
api
/
webapi-plugins.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1209f31
)
[filesystem] add path log for InvalidValue case
25/103625/1
author
Hyunjin Park
<hj.na.park@samsung.com>
Fri, 9 Dec 2016 03:58:34 +0000
(12:58 +0900)
committer
Hyunjin Park
<hj.na.park@samsung.com>
Fri, 9 Dec 2016 03:58:34 +0000
(12:58 +0900)
[verification] code is complied.
Change-Id: I9f4a3f5e91f66313d9b294de3094ab0094dcf67f
src/filesystem/filesystem_stat.cc
patch
|
blob
|
history
diff --git
a/src/filesystem/filesystem_stat.cc
b/src/filesystem/filesystem_stat.cc
index b5b7791be7721bae078b260e95f6c979ab541f1d..014a28d05bf2f31aafe9b5f38ab2b49496865871 100755
(executable)
--- a/
src/filesystem/filesystem_stat.cc
+++ b/
src/filesystem/filesystem_stat.cc
@@
-70,6
+70,7
@@
FilesystemStat FilesystemStat::getStat(const std::string& path) {
LoggerI("File/directory: %s not found", path.c_str());
_result.error = FilesystemError::NotFound;
} else {
+ LoggerI("path: %s", path.c_str());
LoggerE("Failed to stat: (%d) %s", errno, GetErrorString(errno).c_str());
_result.error = FilesystemError::InvalidValue;
}