From: Woochanlee Date: Thu, 8 Jul 2021 09:10:16 +0000 (+0900) Subject: libaurum: Delete class name in log X-Git-Tag: accepted/tizen/unified/20210712.055211~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b6689f8da509d628a25ea425caea585035de89cb;p=platform%2Fcore%2Fuifw%2Faurum.git libaurum: Delete class name in log class name will be added at the defined macro. Change-Id: I960c109688832f5e97c530116afd69705dbdb592 --- diff --git a/libaurum/src/Until.cc b/libaurum/src/Until.cc index 987627a..8fb8d85 100644 --- a/libaurum/src/Until.cc +++ b/libaurum/src/Until.cc @@ -4,7 +4,7 @@ std::function Until::hasObject( const std::shared_ptr selector) { return [=](const ISearchable *searchable) -> bool { - LOGI("Until::hasObject search:%p", searchable); + LOGI("hasObject search:%p", searchable); std::shared_ptr obj = searchable->findObject(selector); return obj.get() != nullptr; }; @@ -14,7 +14,7 @@ std::function(const ISearchable *)> Until::findObject( const std::shared_ptr selector) { return [=](const ISearchable *searchable) -> std::shared_ptr { - LOGI("Until::findObject search:%p", searchable); + LOGI("findObject search:%p", searchable); std::shared_ptr obj = searchable->findObject(selector); return obj; }; @@ -23,7 +23,7 @@ std::function(const ISearchable *)> Until::findObject( std::function Until::checkable(const bool isCheckable) { return [=](const UiObject *object) -> bool { - LOGI("Until::checkable checkable:%d for obj %p", isCheckable, object); + LOGI("checkable checkable:%d for obj %p", isCheckable, object); return object->isClickable() == isCheckable; }; } diff --git a/libaurum/src/Waiter.cc b/libaurum/src/Waiter.cc index 05b4f63..1990895 100644 --- a/libaurum/src/Waiter.cc +++ b/libaurum/src/Waiter.cc @@ -28,7 +28,7 @@ template bool Waiter::waitFor( template R Waiter::waitFor(const std::function condition) const { - LOGI("Waiter::waitFor ISearchable"); + LOGI("waitFor ISearchable"); std::chrono::system_clock::time_point start = std::chrono::system_clock::now(); R result = condition(mSearchableObject); @@ -46,7 +46,7 @@ R Waiter::waitFor(const std::function condition) const template R Waiter::waitFor(const std::function condition) const { - LOGI("Waiter::waitFor UiObject"); + LOGI("waitFor UiObject"); if (mUiObject) { std::chrono::system_clock::time_point start = std::chrono::system_clock::now();