1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Less noise in the error log

- Updated error messages for recovery
- Changed printing of debug sync point information to make it fit 80 char
This commit is contained in:
Monty
2021-03-15 15:45:47 +02:00
committed by Sergei Golubchik
parent 249263525f
commit d754d3d951
4 changed files with 18 additions and 19 deletions

View File

@ -2403,7 +2403,7 @@ int ha_recover(HASH *commit_list)
DBUG_RETURN(0);
if (info.commit_list)
sql_print_information("Starting crash recovery...");
sql_print_information("Starting table crash recovery...");
for (info.len= MAX_XID_LIST_SIZE ;
info.list==0 && info.len > MIN_XID_LIST_SIZE; info.len/=2)
@ -2437,7 +2437,7 @@ int ha_recover(HASH *commit_list)
DBUG_RETURN(1);
}
if (info.commit_list)
sql_print_information("Crash recovery finished.");
sql_print_information("Crash table recovery finished.");
DBUG_RETURN(0);
}