~ubuntu-branches/ubuntu/utopic/mariadb-5.5/utopic-security

« back to all changes in this revision

Viewing changes to sql/log.h

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2015-06-13 21:09:48 UTC
  • mto: This revision was merged to the branch mainline in revision 15.
  • Revision ID: package-import@ubuntu.com-20150613210948-0un6au1f6ujj37lv
Tags: upstream-5.5.44
Import upstream version 5.5.44

Show diffs side-by-side

added added

removed removed

Lines of Context:
864
864
 
865
865
int vprint_msg_to_log(enum loglevel level, const char *format, va_list args);
866
866
void sql_print_error(const char *format, ...);
867
 
void sql_print_warning(const char *format, ...) ATTRIBUTE_FORMAT(printf, 1, 2);
868
 
void sql_print_information(const char *format, ...)
869
 
  ATTRIBUTE_FORMAT(printf, 1, 2);
870
 
typedef void (*sql_print_message_func)(const char *format, ...)
871
 
  ATTRIBUTE_FORMAT_FPTR(printf, 1, 2);
 
867
void sql_print_warning(const char *format, ...);
 
868
void sql_print_information(const char *format, ...);
 
869
typedef void (*sql_print_message_func)(const char *format, ...);
872
870
extern sql_print_message_func sql_print_message_handlers[];
873
871
 
874
872
int error_log_print(enum loglevel level, const char *format,