Use PACKAGE_NAME instead of hardcoding application name in log message

This commit is contained in:
Wladimir J. van der Laan 2018-01-18 19:16:46 +01:00
parent 0c74e2e890
commit 34328b4980
1 changed files with 1 additions and 1 deletions

View File

@ -814,7 +814,7 @@ void InitLogging()
#else
version_string += " (release build)";
#endif
LogPrintf("Bitcoin version %s\n", version_string);
LogPrintf(PACKAGE_NAME " version %s\n", version_string);
}
namespace { // Variables internal to initialization process only