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();
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();
return result;
}
return R();
-}
\ No newline at end of file
+}