diff options
| author | Pieter Wuille <[email protected]> | 2013-01-29 01:44:19 +0100 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2013-01-30 04:30:02 +0100 |
| commit | 421218d3040279c84616891e8d14b05576b07c57 (patch) | |
| tree | a1d1546c823d593008866a3790c0c71cbe4c10de /src/init.cpp | |
| parent | Improve dealing with abort conditions (diff) | |
| download | discoin-421218d3040279c84616891e8d14b05576b07c57.tar.xz discoin-421218d3040279c84616891e8d14b05576b07c57.zip | |
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 c87850b66..2f37dad56 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); |