From: suhyung Eom Date: Tue, 7 Mar 2017 08:19:27 +0000 (+0900) Subject: [3.0] Downgrade warning level of deprecated PropertyMap X-Git-Tag: accepted/tizen/3.0/common/20170323.155250~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=1ee720d034fd99e63e4e1541ec42d7a1b1fa56b5;p=platform%2Fcore%2Fuifw%2Fdali-core.git [3.0] Downgrade warning level of deprecated PropertyMap Signed-off-by: suhyung Eom Change-Id: Iee720757dd6eb1d813541a3e6e4f980ece308bec --- diff --git a/dali/public-api/object/property-map.cpp b/dali/public-api/object/property-map.cpp index 2c2732d..ec30ce9 100644 --- a/dali/public-api/object/property-map.cpp +++ b/dali/public-api/object/property-map.cpp @@ -93,7 +93,7 @@ Property::Value& Property::Map::GetValue( SizeType position ) const const std::string& Property::Map::GetKey( SizeType position ) const { - DALI_LOG_WARNING_NOFN("DEPRECATION WARNING: GetKey() is deprecated and will be removed from next release.\n" ); + DALI_LOG_WARNING( "DEPRECATION WARNING: GetKey() is due to be deprecated in the next release.\n" ); DALI_ASSERT_ALWAYS( position < mImpl->mStringValueContainer.size() && "position out-of-bounds" ); @@ -102,7 +102,7 @@ const std::string& Property::Map::GetKey( SizeType position ) const StringValuePair& Property::Map::GetPair( SizeType position ) const { - DALI_LOG_WARNING_NOFN("DEPRECATION WARNING: GetPair() is deprecated and will be removed from next release.\n" ); + DALI_LOG_WARNING( "DEPRECATION WARNING: GetPair() is due to be deprecated in the next release.\n" ); DALI_ASSERT_ALWAYS( position < mImpl->mStringValueContainer.size() && "position out-of-bounds" );