Print build id on startup

This commit is contained in:
Alexey Milovidov 2020-06-20 12:13:11 +03:00
parent ead4a2cfd9
commit 7fcdfa1f88

View File

@ -721,6 +721,7 @@ void BaseDaemon::logRevision() const
{
Poco::Logger::root().information("Starting " + std::string{VERSION_FULL}
+ " with revision " + std::to_string(ClickHouseRevision::get())
+ ", " + build_id_info
+ ", PID " + std::to_string(getpid()));
}