diff options
| author | Jonas Schnelli <[email protected]> | 2015-11-26 14:03:27 +0100 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2015-11-27 13:26:28 +0100 |
| commit | a46f87f0c17323d8853d95f8ea99f8fb0f3bda1a (patch) | |
| tree | 5a2ae26880b3b406b566ee0a46c75862ddd63485 /src/bitcoind.cpp | |
| parent | Move -blocksonly parameter interaction to the new ParameterInteraction() func... (diff) | |
| download | discoin-a46f87f0c17323d8853d95f8ea99f8fb0f3bda1a.tar.xz discoin-a46f87f0c17323d8853d95f8ea99f8fb0f3bda1a.zip | |
Initialize logging before we do parameter interaction
Diffstat (limited to 'src/bitcoind.cpp')
| -rw-r--r-- | src/bitcoind.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bitcoind.cpp b/src/bitcoind.cpp index f1875731d..4cee2d3cf 100644 --- a/src/bitcoind.cpp +++ b/src/bitcoind.cpp @@ -151,6 +151,8 @@ bool AppInit(int argc, char* argv[]) #endif SoftSetBoolArg("-server", true); + // Set this early so that parameter interactions go to console + InitLogging(); InitParameterInteraction(); fRet = AppInit2(threadGroup, scheduler); } |