Commit e64e6768 authored by Daniel Black's avatar Daniel Black

MDEV-17093: SOURCE_REVISION in log (postfix - not in help)

Don't display the source revision in the mysqld --help output.
parent b21832ef
...@@ -5249,8 +5249,9 @@ static int init_server_components() ...@@ -5249,8 +5249,9 @@ static int init_server_components()
 Print source revision hash, as one of the first lines, if not the  Print source revision hash, as one of the first lines, if not the
 first in error log, for troubleshooting and debugging purposes  first in error log, for troubleshooting and debugging purposes
 */  */
sql_print_information("Starting MariaDB %s source revision %s as process %lu", if (!opt_help)
server_version, SOURCE_REVISION, (ulong) getpid()); sql_print_information("Starting MariaDB %s source revision %s as process %lu",
server_version, SOURCE_REVISION, (ulong) getpid());
#ifdef WITH_PERFSCHEMA_STORAGE_ENGINE #ifdef WITH_PERFSCHEMA_STORAGE_ENGINE
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment