remove debug messages submit/tizen/20200915.093548
authorWonki Kim <wonki_.kim@samsung.com>
Tue, 15 Sep 2020 09:35:12 +0000 (18:35 +0900)
committerWonki Kim <wonki_.kim@samsung.com>
Tue, 15 Sep 2020 09:35:12 +0000 (18:35 +0900)
this patch removes debug messages

Change-Id: I174d25f5019e392a25ce5282995e510d4c7a7efb

libaurum/src/Impl/Accessibility/AtspiAccessibleWatcher.cc
libaurum/src/PartialMatch.cc

index 5205072..815ea20 100644 (file)
@@ -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);
index 942bc62..e78a981 100644 (file)
@@ -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;
 }