From 3870c984ff7ecf78f8635b1838d9ab4d61b2da0b Mon Sep 17 00:00:00 2001 From: Wonki Kim Date: Tue, 15 Sep 2020 18:35:12 +0900 Subject: [PATCH] remove debug messages this patch removes debug messages Change-Id: I174d25f5019e392a25ce5282995e510d4c7a7efb --- libaurum/src/Impl/Accessibility/AtspiAccessibleWatcher.cc | 1 - libaurum/src/PartialMatch.cc | 2 -- 2 files changed, 3 deletions(-) diff --git a/libaurum/src/Impl/Accessibility/AtspiAccessibleWatcher.cc b/libaurum/src/Impl/Accessibility/AtspiAccessibleWatcher.cc index 5205072..815ea20 100644 --- a/libaurum/src/Impl/Accessibility/AtspiAccessibleWatcher.cc +++ b/libaurum/src/Impl/Accessibility/AtspiAccessibleWatcher.cc @@ -77,7 +77,6 @@ AtspiAccessibleWatcher::AtspiAccessibleWatcher() listener = atspi_event_listener_new(AtspiAccessibleWatcher::onAtspiWindowEvent, this, NULL); - LOG_SCOPE_F(INFO, "WKWK init this:%p", this); atspi_event_listener_register(listener, "window:create", NULL); atspi_event_listener_register(listener, "window:destroy", NULL); diff --git a/libaurum/src/PartialMatch.cc b/libaurum/src/PartialMatch.cc index 942bc62..e78a981 100644 --- a/libaurum/src/PartialMatch.cc +++ b/libaurum/src/PartialMatch.cc @@ -11,8 +11,6 @@ bool PartialMatch::checkCriteria(const std::string *textA, const std::string tex if (!textA || !match) return false; std::regex re(*textA); bool rst = !(!!std::regex_match(textB, re) == (*match)); - - LOG_F(INFO, "WKWK# %d %s %s=> %d\n", *match, textA->c_str(), textB.c_str(), rst); return rst; } -- 2.7.4