Change-Id: Ia8a0705ec93e7250ee6cbb3839a6b533fbca8591
Signed-off-by: Andrzej Popowski <a.popowski@samsung.com>
LoggerD("enter");
if (0 != stat(path.c_str(), &aStatObj)) {
- LoggerE("Failed to stat: (%d) %s", errno, GetErrorString(errno).c_str());
if (ENOENT == errno) {
+ LoggerI("File/directory: %s not found", path.c_str());
_result.error = FilesystemError::NotFound;
} else {
+ LoggerE("Failed to stat: (%d) %s", errno, GetErrorString(errno).c_str());
_result.error = FilesystemError::InvalidValue;
}
return _result;