From e445b6b188767d8af9ecb24cbfb1059fda7a1e15 Mon Sep 17 00:00:00 2001 From: YihaoPeng Date: Mon, 7 May 2018 19:43:22 +0800 Subject: [PATCH] Update fakeBaseImpl.cc SBTC dummy: throw a fatal error. --- src/sbtc/fakeBaseImpl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sbtc/fakeBaseImpl.cc b/src/sbtc/fakeBaseImpl.cc index d3cc53976..7321babc9 100644 --- a/src/sbtc/fakeBaseImpl.cc +++ b/src/sbtc/fakeBaseImpl.cc @@ -30,6 +30,6 @@ // So I can only provide such a function to pass the check of linker. appbase::IBaseApp *GetApp() { - LOG(INFO) << "GetApp() should NOT be called!"; + LOG(FATAL) << "GetApp() should NOT be called!"; return nullptr; }