From: Hyunjin Park Date: Fri, 9 Dec 2016 03:58:34 +0000 (+0900) Subject: [filesystem] add path log for InvalidValue case X-Git-Tag: submit/tizen_3.0/20161209.094616~2^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=59a668199d5d4f026d961faaefdde39290700a82;p=platform%2Fcore%2Fapi%2Fwebapi-plugins.git [filesystem] add path log for InvalidValue case [verification] code is complied. Change-Id: I9f4a3f5e91f66313d9b294de3094ab0094dcf67f --- diff --git a/src/filesystem/filesystem_stat.cc b/src/filesystem/filesystem_stat.cc index b5b7791b..014a28d0 100755 --- 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; }