summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sql/sql_repl.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/sql/sql_repl.cc b/sql/sql_repl.cc
index b8de0d411e0..51a0f973cf9 100644
--- a/sql/sql_repl.cc
+++ b/sql/sql_repl.cc
@@ -2304,7 +2304,10 @@ static int send_format_descriptor_event(binlog_send_info *info, IO_CACHE *log,
"checksum that master is configured to log";
sql_print_warning("Master is configured to log replication events "
"with checksum, but will not send such events to "
- "slaves that cannot process them");
+ "slaves that cannot process them "
+ "current: %d slave: %d",
+ (int) info->current_checksum_alg,
+ (int) is_slave_checksum_aware(thd));
DBUG_RETURN(1);
}