mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
Use "sql_print_error" instead of "sql_print_warning" to get a better
error message in the logs before shutting down the server
This commit is contained in:
parent
df249b03dc
commit
0cc13deabf
1 changed files with 4 additions and 4 deletions
|
@ -3153,15 +3153,15 @@ with --log-bin instead.");
|
|||
}
|
||||
if (opt_log_slave_updates && !opt_bin_log)
|
||||
{
|
||||
sql_print_warning("You need to use --log-bin to make "
|
||||
"--log-slave-updates work.");
|
||||
sql_print_error("You need to use --log-bin to make "
|
||||
"--log-slave-updates work.");
|
||||
unireg_abort(1);
|
||||
}
|
||||
|
||||
if (!opt_bin_log && (global_system_variables.binlog_format != BINLOG_FORMAT_UNSPEC))
|
||||
{
|
||||
sql_print_warning("You need to use --log-bin to make "
|
||||
"--binlog-format work.");
|
||||
sql_print_error("You need to use --log-bin to make "
|
||||
"--binlog-format work.");
|
||||
unireg_abort(1);
|
||||
}
|
||||
if (global_system_variables.binlog_format == BINLOG_FORMAT_UNSPEC)
|
||||
|
|
Loading…
Reference in a new issue