From fc0a8968665e925a87e9d91071d2d1828f91f643 Mon Sep 17 00:00:00 2001 From: Gwangbok Kim Date: Wed, 17 Apr 2013 14:53:04 +0900 Subject: [PATCH] fix log message for privacy info Change-Id: Id1a6525b1101b1021efd10f2d279ea5b984a768a Signed-off-by: Gwangbok Kim --- src/FScl_ContactImpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FScl_ContactImpl.cpp b/src/FScl_ContactImpl.cpp index aa80582..f7f11e0 100644 --- a/src/FScl_ContactImpl.cpp +++ b/src/FScl_ContactImpl.cpp @@ -717,7 +717,7 @@ _ContactImpl::SetValue(ContactPropertyId id, const String& value) if (_AppInfo::GetApiVersion() == _API_VERSION_2_0 && _AppInfo::IsOspCompat()) { int maxLength = GetMaxLength(id); - SysTryReturn(NID_SCL, value.GetLength() <= maxLength || maxLength == -1 , E_INVALID_ARG, E_INVALID_ARG, "[%s] Invalid argument is used. The length of the value=%ls exceeds the maximum length.", GetErrorMessage(E_INVALID_ARG), value.GetPointer()); + SysTryReturn(NID_SCL, value.GetLength() <= maxLength || maxLength == -1 , E_INVALID_ARG, E_INVALID_ARG, "[%s] Invalid argument is used. The length of the value exceeds the maximum length.", GetErrorMessage(E_INVALID_ARG)); } switch (id) -- 2.7.4