libaurum: Fix build warning in Waiter.cc 22/258722/3
authorWoochanlee <wc0917.lee@samsung.com>
Tue, 25 May 2021 02:11:20 +0000 (11:11 +0900)
committerwoochan lee <wc0917.lee@samsung.com>
Tue, 25 May 2021 03:23:31 +0000 (03:23 +0000)
fix argument type dismatch build warning.

Change-Id: I6ddddc6509578f4286ef38c6989179409665456b

libaurum/src/Waiter.cc

index dcbc0488201a78bc099350df921bae48a6161b96..bdee46af770e679370d46b3f7feb816cd307a210 100644 (file)
@@ -32,7 +32,7 @@ template bool Waiter::waitFor(
 template <typename R>
 R Waiter::waitFor(const std::function<R(const ISearchable *)> condition) const
 {
-    LOG_SCOPE_F(INFO, "Waiter::waitFor %p", condition);
+    LOG_SCOPE_F(INFO, "Waiter::waitFor ISearchable");
     // startTime = currentTime();
     std::chrono::system_clock::time_point start =
         std::chrono::system_clock::now();
@@ -51,7 +51,7 @@ R Waiter::waitFor(const std::function<R(const ISearchable *)> condition) const
 template <typename R>
 R Waiter::waitFor(const std::function<R(const UiObject *)> condition) const
 {
-    LOG_SCOPE_F(INFO, "Waiter::waitFor %p", condition);
+    LOG_SCOPE_F(INFO, "Waiter::waitFor UiObject");
     if (mUiObject) {
         std::chrono::system_clock::time_point start =
             std::chrono::system_clock::now();
@@ -67,4 +67,4 @@ R Waiter::waitFor(const std::function<R(const UiObject *)> condition) const
         return result;
     }
     return R();
-}
\ No newline at end of file
+}