[filesystem] add path log for InvalidValue case 25/103625/1
authorHyunjin Park <hj.na.park@samsung.com>
Fri, 9 Dec 2016 03:58:34 +0000 (12:58 +0900)
committerHyunjin 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

index b5b7791be7721bae078b260e95f6c979ab541f1d..014a28d05bf2f31aafe9b5f38ab2b49496865871 100755 (executable)
@@ -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;
     }