Merge "Added support for Event creation in worker thread" into tizen
[platform/framework/native/appfw.git] / src / app / FApp_AppSettingImpl.cpp
index f7aabd9..d9aab4b 100644 (file)
@@ -53,7 +53,6 @@ namespace Tizen { namespace App
 {
 
 const int APP_ID_LENTH = 10;
-const int MAX_CONTENT_LEN = 512;
 const int MAX_LOCAL_BUFSIZE = 128;
 const char* DBUS_PATH = "/setting/dbus_handler";
 const char* DBUS_SIGNAL_INTERFACE = "org.tizen.setting.signal";
@@ -664,7 +663,7 @@ result
 _AppSettingImpl::Load(void)
 {
        SysTryReturnResult(NID_APP, File::IsFileExist(__filePath), E_OBJ_NOT_FOUND,
-                                          "The instance of specified AppId does not have setting information.");
+                                          "The instance of specified AppId does not have setting information. %ls", __filePath.GetPointer());
 
        result r = E_SUCCESS;
        std::unique_ptr<ByteBuffer> pfilePath(Tizen::Base::Utility::StringUtil::StringToUtf8N(__filePath));