mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
Include a timestamp on the 'ready for connections' message by printing it
using sql_print_information() instead of directly to stdout. (Bug #8444)
This commit is contained in:
parent
41043bb3f5
commit
7baab10ebb
2 changed files with 7 additions and 9 deletions
|
@ -3113,13 +3113,11 @@ we force server id to 2, but this MySQL server will not act as a slave.");
|
|||
create_shutdown_thread();
|
||||
create_maintenance_thread();
|
||||
|
||||
printf(ER(ER_READY),my_progname,server_version,
|
||||
((unix_sock == INVALID_SOCKET) ? (char*) "" : mysqld_unix_port),
|
||||
mysqld_port);
|
||||
if (MYSQL_COMPILATION_COMMENT[0] != '\0')
|
||||
fputs(" " MYSQL_COMPILATION_COMMENT, stdout);
|
||||
putchar('\n');
|
||||
fflush(stdout);
|
||||
sql_print_information(ER(ER_READY),my_progname,server_version,
|
||||
((unix_sock == INVALID_SOCKET) ? (char*) ""
|
||||
: mysqld_unix_port),
|
||||
mysqld_port,
|
||||
MYSQL_COMPILATION_COMMENT);
|
||||
|
||||
#if defined(__NT__) || defined(HAVE_SMEM)
|
||||
handle_connections_methods();
|
||||
|
|
|
@ -1824,7 +1824,7 @@ ER_READY
|
|||
cze "%s: p-Bøipraven na spojení"
|
||||
dan "%s: klar til tilslutninger"
|
||||
nla "%s: klaar voor verbindingen"
|
||||
eng "%s: ready for connections.\nVersion: '%s' socket: '%s' port: %d"
|
||||
eng "%s: ready for connections.\nVersion: '%s' socket: '%s' port: %d %s"
|
||||
jps "%s: <20>€”õŠ®—¹",
|
||||
est "%s: ootab ühendusi"
|
||||
fre "%s: Prêt pour des connections"
|
||||
|
@ -1839,7 +1839,7 @@ ER_READY
|
|||
pol "%s: gotowe do po³?czenia"
|
||||
por "%s: Pronto para conexões"
|
||||
rum "%s: sint gata pentru conectii"
|
||||
rus "%s: çÏÔÏ× ÐÒÉÎÉÍÁÔØ ÓÏÅÄÉÎÅÎÉÑ.\n÷ÅÒÓÉÑ: '%s' ÓÏËÅÔ: '%s' ÐÏÒÔ: %d"
|
||||
rus "%s: çÏÔÏ× ÐÒÉÎÉÍÁÔØ ÓÏÅÄÉÎÅÎÉÑ.\n÷ÅÒÓÉÑ: '%s' ÓÏËÅÔ: '%s' ÐÏÒÔ: %d %s"
|
||||
serbian "%s: Spreman za konekcije\n"
|
||||
slo "%s: pripravený na spojenie"
|
||||
spa "%s: preparado para conexiones"
|
||||
|
|
Loading…
Reference in a new issue