[content] Change secure log
authorSeokpil Park <seokpil.park@samsung.com>
Fri, 19 Apr 2013 01:19:26 +0000 (10:19 +0900)
committerSeokpil Park <seokpil.park@samsung.com>
Fri, 19 Apr 2013 01:19:29 +0000 (10:19 +0900)
Change-Id: I63347bbf7a2885ea5b5f81c6f643fa523c6e0ee7
Signed-off-by: Seokpil Park <seokpil.park@samsung.com>
src/FCnt_ContentManagerUtilImpl.cpp

index 2881d29..e82ef1d 100755 (executable)
@@ -75,10 +75,10 @@ _ContentManagerUtilImpl::GetImageMetaN(const String& contentPath, bool internal)
        if (!internal)
        {
                SysTryReturn(NID_CNT, VerifyFilePathCompatibility(contentPath), null, E_INVALID_ARG,
-                               "[E_INVALID_ARG] %ls is not compatible.", contentPath.GetPointer());
+                               "[E_INVALID_ARG] The path is not compatible.");
        }
        SysTryReturn(NID_CNT, _FileImpl::IsFileExist(contentPath), null, E_INVALID_ARG,
-                       "[E_INVALID_ARG] The file corresponding to contentPath could not be found.(%ls)", contentPath.GetPointer());
+                       "[E_INVALID_ARG] The file corresponding to contentPath could not be found.");
 
        // create object here as it needs to be passed to client in any case to make sure Get APIs do not crash
        unique_ptr<ImageMetadata> pImageMetadata(new (nothrow) ImageMetadata());
@@ -320,7 +320,7 @@ _ContentManagerUtilImpl::GetAudioMetaN(const String& contentPath)
        ClearLastResult();
 
        SysTryReturn(NID_CNT, VerifyFilePathCompatibility(contentPath), null, E_INVALID_ARG,
-                       "[E_INVALID_ARG] %ls is not compatible.", contentPath.GetPointer());
+                       "[E_INVALID_ARG] The path is not compatible.");
        SysTryReturn(NID_CNT, _FileImpl::IsFileExist(contentPath), null, E_INVALID_ARG,
                        "[E_INVALID_ARG] The file corresponding to contentPath could not be found.");
 
@@ -664,7 +664,7 @@ _ContentManagerUtilImpl::GetVideoMetaN(const String& contentPath)
        ClearLastResult();
 
        SysTryReturn(NID_CNT, VerifyFilePathCompatibility(contentPath), null, E_INVALID_ARG,
-                       "[E_INVALID_ARG] %ls is not compatible.", contentPath.GetPointer());
+                       "[E_INVALID_ARG] The path is not compatible.");
        SysTryReturn(NID_CNT, _FileImpl::IsFileExist(contentPath), null, E_INVALID_ARG,
                        "[E_INVALID_ARG] The file corresponding to contentPath could not be found.");
 
@@ -1638,7 +1638,7 @@ _ContentManagerUtilImpl::CheckContentType(const String& contentPath, bool intern
        if (!internal)
        {
                SysTryReturn(NID_CNT, VerifyFilePathCompatibility(contentPath), contentType, E_INVALID_ARG,
-                               "[E_INVALID_ARG] %ls is not compatible.", contentPath.GetPointer());
+                               "[E_INVALID_ARG] The path is not compatible.");
        }
        SysTryReturn(NID_CNT, contentPath.GetLength() != 0, contentType, E_INVALID_ARG,
                        "[E_INVALID_ARG] The length of contentPath is 0.");