Просмотр исходного кода

More logs while recovering core

v-korovin 2 лет назад
Родитель
Сommit
7c0a278f43
1 измененных файлов с 2 добавлено и 0 удалено
  1. 2 0
      library/python/testing/yatest_common/yatest/common/process.py

+ 2 - 0
library/python/testing/yatest_common/yatest/common/process.py

@@ -296,6 +296,7 @@ class _Execution(object):
             pbt_filename = None
 
             if os.path.exists(runtime.gdb_path()):
+                yatest_logger.debug("Getting full backtrace from core file")
                 self._backtrace = cores.get_gdb_full_backtrace(self.command[0], core_path, runtime.gdb_path())
                 bt_filename = path.get_unique_file_path(
                     runtime.output_path(),
@@ -307,6 +308,7 @@ class _Execution(object):
                 pbt_filename = bt_filename + ".html"
                 backtrace_to_html(bt_filename, pbt_filename)
 
+            yatest_logger.debug("Register coredump")
             if store_cores:
                 runtime._register_core(
                     os.path.basename(self.command[0]), self.command[0], core_path, bt_filename, pbt_filename