From: Shinichiro Hamaji Date: Tue, 9 May 2017 08:01:07 +0000 (+0900) Subject: Use LOG(FATAL) instead of CHECK(false) X-Git-Tag: submit/tizen/20180313.064233~43^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7314fa3f8682c9ebff6dc820bd40c490d9ec1bec;p=platform%2Fupstream%2Fglog.git Use LOG(FATAL) instead of CHECK(false) --- diff --git a/src/logging_unittest.cc b/src/logging_unittest.cc index b886222..97cbeaa 100644 --- a/src/logging_unittest.cc +++ b/src/logging_unittest.cc @@ -282,7 +282,7 @@ void TestLogging(bool check_counts) { } static void NoAllocNewHook() { - CHECK(false) << "unexpected new"; + LOG(FATAL) << "unexpected new"; } struct NewHook {