| 1482 | |
| 1483 | |
| 1484 | void sql_print_information(const char *format, ...) |
| 1485 | { |
| 1486 | va_list args; |
| 1487 | DBUG_ENTER("sql_print_information"); |
| 1488 | |
| 1489 | va_start(args, format); |
| 1490 | error_log_print(INFORMATION_LEVEL, format, args); |
| 1491 | va_end(args); |
| 1492 | |
| 1493 | DBUG_VOID_RETURN; |
| 1494 | } |
| 1495 | |
| 1496 |
no test coverage detected