Fix wrong log message 21/201921/1
authorSukHyung, Kang <shine.kang@samsung.com>
Thu, 21 Mar 2019 02:53:01 +0000 (11:53 +0900)
committerSukHyung, Kang <shine.kang@samsung.com>
Thu, 21 Mar 2019 02:53:01 +0000 (11:53 +0900)
Change-Id: Idcd0bfb2962075bb93184ad187c6a261071a0982
Signed-off-by: SukHyung, Kang <shine.kang@samsung.com>
notification-ex/abstract_item.cc

index c196d9c..705343d 100644 (file)
@@ -101,18 +101,18 @@ AbstractItem::Impl::Impl(AbstractItem* parent, string id,
   if (id_.empty())
     id_ = GenerateItemId();
   sender_appid_ = util::GetAppId();
-  LOGI("GroupItem created (%s)", id_.c_str());
+  LOGI("AbstractItem created (%s)", id_.c_str());
 }
 
 AbstractItem::Impl::Impl(AbstractItem* parent,
     std::shared_ptr<AbstractAction> action)
     : action_(action), parent_(parent),
     info_(std::make_shared<ItemInfo>(this)) {
-  LOGI("GroupItem created");
+  LOGI("AbstractItem created");
 
   id_ = GenerateItemId();
   sender_appid_ = util::GetAppId();
-  LOGI("GroupItem created (%s)", id_.c_str());
+  LOGI("AbstractItem created (%s)", id_.c_str());
 }
 
 AbstractItem::~AbstractItem() = default;