From 4764dbdb4c9f5856f9ee1df4d5313202584950d7 Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Fri, 23 Jun 2023 07:28:04 +0300 Subject: [PATCH] Merge pull request #22 from ClickHouse/better-fix-16-1 Better fix for #16 (cherry picked from commit b4ed7e2f6ef614b8d88982dce2ab675e0270a482) --- cpp/src/arrow/util/logging.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/cpp/src/arrow/util/logging.cc b/cpp/src/arrow/util/logging.cc index 11e2c732b0f54..33336c25a0da2 100644 --- a/cpp/src/arrow/util/logging.cc +++ b/cpp/src/arrow/util/logging.cc @@ -70,9 +70,6 @@ class CerrLog { if (has_logged_) { stream << std::endl; } - if (severity_ == ArrowLogLevel::ARROW_FATAL) { - throw std::runtime_error(stream.str()); - } } std::ostream& Stream() {