aboutsummaryrefslogtreecommitdiff
path: root/src/init
diff options
context:
space:
mode:
authorRussell Yanofsky <russ@yanofsky.org>2021-04-18 19:01:01 -0400
committerRussell Yanofsky <russ@yanofsky.org>2021-04-19 06:11:38 -0400
commit90469c16906ab451bb1250df5e51563870a7ef3b (patch)
tree7535fca4609603f8b7c1c21f4c1ca44b31344fdf /src/init
parent387c4cf5887bfdaf1606e1b287d901e4c449514f (diff)
downloadbitcoin-90469c16906ab451bb1250df5e51563870a7ef3b.tar.xz
Move common logging AddArg code to init/common
Diffstat (limited to 'src/init')
-rw-r--r--src/init/common.cpp25
-rw-r--r--src/init/common.h3
2 files changed, 28 insertions, 0 deletions
diff --git a/src/init/common.cpp b/src/init/common.cpp
index 54c3fe3a2e..caabd5db82 100644
--- a/src/init/common.cpp
+++ b/src/init/common.cpp
@@ -2,6 +2,10 @@
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
+#if defined(HAVE_CONFIG_H)
+#include <config/bitcoin-config.h>
+#endif
+
#include <compat/sanity.h>
#include <crypto/sha256.h>
#include <key.h>
@@ -9,6 +13,7 @@
#include <node/ui_interface.h>
#include <pubkey.h>
#include <random.h>
+#include <util/system.h>
#include <util/time.h>
#include <util/translation.h>
@@ -51,4 +56,24 @@ bool SanityChecks()
return true;
}
+
+void AddLoggingArgs(ArgsManager& argsman)
+{
+ argsman.AddArg("-debuglogfile=<file>", strprintf("Specify location of debug log file. Relative paths will be prefixed by a net-specific datadir location. (-nodebuglogfile to disable; default: %s)", DEFAULT_DEBUGLOGFILE), ArgsManager::ALLOW_ANY, OptionsCategory::OPTIONS);
+ argsman.AddArg("-debug=<category>", "Output debugging information (default: -nodebug, supplying <category> is optional). "
+ "If <category> is not supplied or if <category> = 1, output all debugging information. <category> can be: " + LogInstance().LogCategoriesString() + ". This option can be specified multiple times to output multiple categories.",
+ ArgsManager::ALLOW_ANY, OptionsCategory::DEBUG_TEST);
+ argsman.AddArg("-debugexclude=<category>", strprintf("Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except the specified category. This option can be specified multiple times to exclude multiple categories."), ArgsManager::ALLOW_ANY, OptionsCategory::DEBUG_TEST);
+ argsman.AddArg("-logips", strprintf("Include IP addresses in debug output (default: %u)", DEFAULT_LOGIPS), ArgsManager::ALLOW_ANY, OptionsCategory::DEBUG_TEST);
+ argsman.AddArg("-logtimestamps", strprintf("Prepend debug output with timestamp (default: %u)", DEFAULT_LOGTIMESTAMPS), ArgsManager::ALLOW_ANY, OptionsCategory::DEBUG_TEST);
+#ifdef HAVE_THREAD_LOCAL
+ argsman.AddArg("-logthreadnames", strprintf("Prepend debug output with name of the originating thread (only available on platforms supporting thread_local) (default: %u)", DEFAULT_LOGTHREADNAMES), ArgsManager::ALLOW_ANY, OptionsCategory::DEBUG_TEST);
+#else
+ argsman.AddHiddenArgs({"-logthreadnames"});
+#endif
+ argsman.AddArg("-logsourcelocations", strprintf("Prepend debug output with name of the originating source location (source file, line number and function name) (default: %u)", DEFAULT_LOGSOURCELOCATIONS), ArgsManager::ALLOW_ANY, OptionsCategory::DEBUG_TEST);
+ argsman.AddArg("-logtimemicros", strprintf("Add microsecond precision to debug timestamps (default: %u)", DEFAULT_LOGTIMEMICROS), ArgsManager::ALLOW_ANY | ArgsManager::DEBUG_ONLY, OptionsCategory::DEBUG_TEST);
+ argsman.AddArg("-printtoconsole", "Send trace/debug info to console (default: 1 when no -daemon. To disable logging to file, set -nodebuglogfile)", ArgsManager::ALLOW_ANY, OptionsCategory::DEBUG_TEST);
+ argsman.AddArg("-shrinkdebugfile", "Shrink debug.log file on client startup (default: 1 when no -debug)", ArgsManager::ALLOW_ANY, OptionsCategory::DEBUG_TEST);
+}
} // namespace init
diff --git a/src/init/common.h b/src/init/common.h
index 64a3637370..fce6e679c2 100644
--- a/src/init/common.h
+++ b/src/init/common.h
@@ -8,6 +8,8 @@
#ifndef BITCOIN_INIT_COMMON_H
#define BITCOIN_INIT_COMMON_H
+class ArgsManager;
+
namespace init {
void SetGlobals();
void UnsetGlobals();
@@ -16,6 +18,7 @@ void UnsetGlobals();
* necessary library support.
*/
bool SanityChecks();
+void AddLoggingArgs(ArgsManager& args);
} // namespace init
#endif // BITCOIN_INIT_COMMON_H