Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ooops search is correct
Browse files Browse the repository at this point in the history
olegklimov committed May 9, 2024
1 parent 226ff77 commit 49e00cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions refact_webgui/webgui/webgui.py
Original file line number Diff line number Diff line change
@@ -149,9 +149,9 @@ def setup_logger():
class CustomHandler(logging.Handler):
def emit(self, record):
log_entry = self.format(record)
if boring1.match(log_entry):
if boring1.search(log_entry):
return
if boring2.match(log_entry):
if boring2.search(log_entry):
return
sys.stderr.write(log_entry)
sys.stderr.write("\n")

0 comments on commit 49e00cf

Please sign in to comment.