From: Hwankyu Jhun Date: Mon, 19 Oct 2020 02:44:44 +0000 (+0900) Subject: Fix wrong log message X-Git-Tag: accepted/tizen/6.0/unified/20201110.010734~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5efbbf223f9391ffefe7b7d9ddd56b5113c870ec;p=platform%2Fcore%2Fbase%2Fbundle.git Fix wrong log message Change-Id: Ie77db322b0cef7fa0ccc9a19d85d0219cb495c1d Signed-off-by: Hwankyu Jhun --- diff --git a/src/bundle_cpp.cc b/src/bundle_cpp.cc index 341dfce..e44e8a9 100644 --- a/src/bundle_cpp.cc +++ b/src/bundle_cpp.cc @@ -218,7 +218,7 @@ int Bundle::Add(const std::string& key, const std::vector& val) { int Bundle::Delete(const std::string& key) { int ret = bundle_del(impl_->handle_, key.c_str()); if (ret != BUNDLE_ERROR_NONE) - LOGE("Add fail key(%s), ret(%d)", key.c_str(), ret); + LOGE("Delete fail key(%s), ret(%d)", key.c_str(), ret); return ret; }