From b7fa78c077be29474167cf8016e0f1ef29a14483 Mon Sep 17 00:00:00 2001 From: "SukHyung, Kang" Date: Thu, 21 Mar 2019 11:53:01 +0900 Subject: [PATCH] Fix wrong log message Change-Id: Idcd0bfb2962075bb93184ad187c6a261071a0982 Signed-off-by: SukHyung, Kang --- notification-ex/abstract_item.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/notification-ex/abstract_item.cc b/notification-ex/abstract_item.cc index c196d9c..705343d 100644 --- a/notification-ex/abstract_item.cc +++ b/notification-ex/abstract_item.cc @@ -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 action) : action_(action), parent_(parent), info_(std::make_shared(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; -- 2.7.4