Modify exception logs
authorHyunbin Lee <hyunbin.lee@samsung.com>
Mon, 24 Jun 2013 10:25:42 +0000 (19:25 +0900)
committerHyunbin Lee <hyunbin.lee@samsung.com>
Mon, 24 Jun 2013 10:26:15 +0000 (19:26 +0900)
Change-Id: I7c36cfd2ef2224178f28097c3cb37d73571bba03
Signed-off-by: Hyunbin Lee <hyunbin.lee@samsung.com>
src/io/FIo_DirEnumeratorImpl.cpp

index d3b50fa..78b30a2 100644 (file)
@@ -139,7 +139,7 @@ _DirEnumeratorImpl::MoveNext(void)
        errno = 0;
        struct dirent* pDirEnt = readdir((DIR*) __pFileFindInfo);
        SysTryReturnResult(NID_IO, errno == 0, __ConvertNativeErrorToResult(errno),
-                       "Failed to the next directory entry. path: %s, errno: %d (%s)", pDirPath.get(), errno, strerror(errno));
+                       "Failed to the next directory entry. parent: %s, errno: %d (%s)", pDirPath.get(), errno, strerror(errno));
        SysTryReturnResult(NID_IO, pDirEnt != null, E_END_OF_FILE, "End of directory entries");
 
        char entryPath[PATH_MAX] = { 0, };
@@ -149,9 +149,8 @@ _DirEnumeratorImpl::MoveNext(void)
 
        struct stat64 statbuf;
        int ret = stat64(entryPath, &statbuf);
-       SysSecureTryReturnResult(NID_IO, ret == 0, r = __ConvertNativeErrorToResult(errno),
-                       "[%s] Failed to get attributes for directory entry (%s), errno: %d (%s)",
-                       entryPath, errno, strerror(errno));
+       SysSecureTryReturnResult(NID_IO, ret == 0, __ConvertNativeErrorToResult(errno),
+                       "Failed to get attributes for directory entry (%s), errno: %d (%s)", entryPath, errno, strerror(errno));
 
        struct tm* pTm = localtime(&statbuf.st_mtime);
        SysTryReturnResult(NID_IO, pTm != null, E_SYSTEM, "Failed to call localtime() (%s).", strerror(errno));