mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-10 22:18:54 +01:00
Move common package version code to init/common
This commit is contained in:
@@ -6,6 +6,7 @@
|
||||
#include <config/bitcoin-config.h>
|
||||
#endif
|
||||
|
||||
#include <clientversion.h>
|
||||
#include <compat/sanity.h>
|
||||
#include <crypto/sha256.h>
|
||||
#include <key.h>
|
||||
@@ -152,4 +153,15 @@ bool StartLogging(const ArgsManager& args)
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
void LogPackageVersion()
|
||||
{
|
||||
std::string version_string = FormatFullVersion();
|
||||
#ifdef DEBUG
|
||||
version_string += " (debug build)";
|
||||
#else
|
||||
version_string += " (release build)";
|
||||
#endif
|
||||
LogPrintf(PACKAGE_NAME " version %s\n", version_string);
|
||||
}
|
||||
} // namespace init
|
||||
|
||||
Reference in New Issue
Block a user