aboutsummaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2013-12-14 13:51:11 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2013-12-15 10:12:38 +0100
commit9e9056cd1a05e5868025553d2a8cb3e47cf45045 (patch)
treeccb955d1bd925032fb107b908f6cc7a836d9efe5 /src/util.h
parent8a7606f35bf6ce862996559d4860c9b7f618e9ee (diff)
downloadbitcoin-9e9056cd1a05e5868025553d2a8cb3e47cf45045.tar.xz
Remove -logtodebugger
`-logtodebugger` is a strange, obscure, WIN32-only (mostly MSVC) thing. Let's clean up the options a bit get rid of it. test_bitcoin was using fLogToDebugger as a way to prevent logging to debug.log. For this, add a boolean (not exposed as option) fLogToDebugLog that defaults to true and is disabled in the tests.
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.h b/src/util.h
index 9c7f185f13..3922872e06 100644
--- a/src/util.h
+++ b/src/util.h
@@ -120,7 +120,7 @@ extern std::map<std::string, std::string> mapArgs;
extern std::map<std::string, std::vector<std::string> > mapMultiArgs;
extern bool fDebug;
extern bool fPrintToConsole;
-extern bool fPrintToDebugger;
+extern bool fPrintToDebugLog;
extern bool fDaemon;
extern bool fServer;
extern std::string strMiscWarning;