Fix wrong log message 76/245876/1
authorHwankyu Jhun <h.jhun@samsung.com>
Mon, 19 Oct 2020 02:44:44 +0000 (11:44 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Mon, 19 Oct 2020 02:44:44 +0000 (11:44 +0900)
Change-Id: Ie77db322b0cef7fa0ccc9a19d85d0219cb495c1d
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
src/bundle_cpp.cc

index 341dfce..e44e8a9 100644 (file)
@@ -218,7 +218,7 @@ int Bundle::Add(const std::string& key, const std::vector<unsigned char>& 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;
 }