This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Functions | |
| void | log_info (const char *format,...) |
| void | log_error (const char *format,...) |
| void | print_info (const char *format,...) |
| void | print_error (const char *format,...) |
| void | log_init () |
| void | die (const char *format,...) |
| void die | ( | const char * | format, | |
| ... | ||||
| ) |
Definition at line 162 of file log.cc.
References args, exit, and my_progname.
00163 { 00164 va_list args; 00165 fprintf(stderr,"%s: ", my_progname); 00166 va_start(args, format); 00167 vfprintf(stderr, format, args); 00168 va_end(args); 00169 fprintf(stderr, "\n"); 00170 exit(1); 00171 }
| void log_error | ( | const char * | format, | |
| ... | ||||
| ) |
Definition at line 111 of file log.cc.
Referenced by angel(), check_user(), Instance_map::complete_initialization(), Abstract_option_cmd::correct_file(), Instance_map::create_instance(), create_instance_in_file(), create_pid_file(), Listener_thread::create_tcp_socket(), Listener_thread::create_unix_socket(), LOGGER::error_log_print(), Drop_instance::execute_impl(), Instance_options::fill_instance_version(), Instance_options::fill_mysqld_real_path(), Listener_thread::handle_new_mysql_connection(), Instance::kill_instance(), manager(), Set_option::process_option(), Instance::remove_pid(), Listener_thread::run(), set_user(), and Instance::start().
00112 { 00113 va_list args; 00114 va_start(args, format); 00115 log(stderr, format, args); 00116 va_end(args); 00117 }
Here is the call graph for this function:

Here is the caller graph for this function:

| void log_info | ( | const char * | format, | |
| ... | ||||
| ) |
Definition at line 120 of file log.cc.
Referenced by angel(), check_user(), Instance_map::create_instance(), Listener_thread::create_tcp_socket(), Listener_thread::create_unix_socket(), Mysql_connection_thread::dispatch_command(), Mysql_connection_thread::do_command(), HandleServiceOptions(), User::init(), Instance::is_running(), Instance_map::load(), Options::load(), User_map::load(), IMService::Log(), manager(), mysql_connection(), Guardian_thread::process_instance(), Instance_map::process_one_option(), Listener_thread::run(), Mysql_connection_thread::run(), start_and_monitor_instance(), and start_process().
00121 { 00122 va_list args; 00123 va_start(args, format); 00124 log(stdout, format, args); 00125 va_end(args); 00126 }
Here is the call graph for this function:

Here is the caller graph for this function:

| void log_init | ( | ) |
| void print_error | ( | const char * | format, | |
| ... | ||||
| ) |
| void print_info | ( | const char * | format, | |
| ... | ||||
| ) |
1.4.7

