diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2013-01-29 01:44:19 +0100 |
---|---|---|
committer | Pieter Wuille <pieterw@google.com> | 2013-01-30 04:30:02 +0100 |
commit | 421218d3040279c84616891e8d14b05576b07c57 (patch) | |
tree | a1d1546c823d593008866a3790c0c71cbe4c10de /src/init.cpp | |
parent | 7851033dd687e826df82c1ec841480710468ce8c (diff) |
Deal with LevelDB errors
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/init.cpp b/src/init.cpp index c87850b664..2f37dad56c 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -187,9 +187,9 @@ bool AppInit(int argc, char* argv[]) fRet = AppInit2(); } catch (std::exception& e) { - PrintException(&e, "AppInit()"); + PrintExceptionContinue(&e, "AppInit()"); } catch (...) { - PrintException(NULL, "AppInit()"); + PrintExceptionContinue(NULL, "AppInit()"); } if (!fRet) Shutdown(NULL); |