diff options
author | ilnurkh <ilnurkh@yandex-team.com> | 2023-10-09 09:53:51 +0300 |
---|---|---|
committer | ilnurkh <ilnurkh@yandex-team.com> | 2023-10-09 10:10:37 +0300 |
commit | 3603a96b240210bb1f45276faa3b387631405f1c (patch) | |
tree | 0ed08f3221c795101f030c5c9cb4db1c8598e680 /util | |
parent | a2a5ccfbe4364fc593f19e220b57c6f5a93df328 (diff) | |
download | ydb-3603a96b240210bb1f45276faa3b387631405f1c.tar.gz |
remove double backtrace printing
заметил что в ::NPrivate::Panic и так есть написание трейса
Diffstat (limited to 'util')
-rw-r--r-- | util/system/yassert.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/util/system/yassert.h b/util/system/yassert.h index c4510e75505..3ae67f5ae9e 100644 --- a/util/system/yassert.h +++ b/util/system/yassert.h @@ -84,7 +84,6 @@ namespace NPrivate { try { \ if (Y_UNLIKELY(!(expr))) { \ Y_HIT_DEBUGGER(); \ - ::PrintBackTrace(); \ /* NOLINTNEXTLINE */ \ ::NPrivate::Panic(__SOURCE_FILE_IMPL__, __LINE__, __FUNCTION__, #expr, " " __VA_ARGS__); \ } \ |