diff options
author | Russell Yanofsky <russ@yanofsky.org> | 2021-04-18 19:01:01 -0400 |
---|---|---|
committer | Russell Yanofsky <russ@yanofsky.org> | 2021-04-19 06:11:38 -0400 |
commit | 90469c16906ab451bb1250df5e51563870a7ef3b (patch) | |
tree | 7535fca4609603f8b7c1c21f4c1ca44b31344fdf /src/init/common.h | |
parent | 387c4cf5887bfdaf1606e1b287d901e4c449514f (diff) |
Move common logging AddArg code to init/common
Diffstat (limited to 'src/init/common.h')
-rw-r--r-- | src/init/common.h | 3 |
1 files changed, 3 insertions, 0 deletions
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 |