diff options
author | prettyboy <prettyboy@yandex-team.com> | 2023-09-02 11:05:05 +0300 |
---|---|---|
committer | prettyboy <prettyboy@yandex-team.com> | 2023-09-02 11:19:19 +0300 |
commit | 344c9f0c62c41922c5cbe0fd5c413fa193dd15c9 (patch) | |
tree | 699028077de31ef5b167b4b87b96f939c88aac7b | |
parent | 53ef7a4388cc1740ba79114c144c564b22a7b93d (diff) | |
download | ydb-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.py | 3 |
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: |