aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorprettyboy <prettyboy@yandex-team.com>2023-09-02 11:05:05 +0300
committerprettyboy <prettyboy@yandex-team.com>2023-09-02 11:19:19 +0300
commit344c9f0c62c41922c5cbe0fd5c413fa193dd15c9 (patch)
tree699028077de31ef5b167b4b87b96f939c88aac7b
parent53ef7a4388cc1740ba79114c144c564b22a7b93d (diff)
downloadydb-344c9f0c62c41922c5cbe0fd5c413fa193dd15c9.tar.gz
[library/python/testing/yatest_common/yatest/common/process] Reduce noise from coredump_filter
-rw-r--r--library/python/testing/yatest_common/yatest/common/process.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/library/python/testing/yatest_common/yatest/common/process.py b/library/python/testing/yatest_common/yatest/common/process.py
index b6258252ae..5868285226 100644
--- a/library/python/testing/yatest_common/yatest/common/process.py
+++ b/library/python/testing/yatest_common/yatest/common/process.py
@@ -841,6 +841,9 @@ def backtrace_to_html(bt_filename, output):
try:
from library.python import coredump_filter
+ # XXX reduce noise from core_dumpfilter
+ logging.getLogger("sandbox.sdk2.helpers.coredump_filter").setLevel(logging.ERROR)
+
with open(output, "w") as afile:
coredump_filter.filter_stackdump(bt_filename, stream=afile)
except ImportError as e: