diff options
| author | Gavin Andresen <[email protected]> | 2013-08-12 18:06:17 +1000 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2013-08-12 18:06:17 +1000 |
| commit | b35e99320001fe2efdd96cd35b0170e30773bd09 (patch) | |
| tree | 73e08526517f0ae72d752623e7162fc85d8eb443 /src/init.cpp | |
| parent | Merge pull request #2856 from Diapolo/crypter_headers (diff) | |
| download | discoin-b35e99320001fe2efdd96cd35b0170e30773bd09.tar.xz discoin-b35e99320001fe2efdd96cd35b0170e30773bd09.zip | |
Use HandleError() consistently to handle leveldb errors
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/init.cpp b/src/init.cpp index 20d334019..95d6cf115 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -777,6 +777,7 @@ bool AppInit2(boost::thread_group& threadGroup) break; } } catch(std::exception &e) { + if (fDebug) printf("%s\n", e.what()); strLoadError = _("Error opening block database"); break; } |