mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / server-tools / instance-manager / log.h
blobe07dbe562d792197082ca45ebe5f25ff959ae2b9
1 /* Copyright (C) 2003-2006 MySQL AB
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; version 2 of the License.
7 This program is distributed in the hope that it will be useful,
8 but WITHOUT ANY WARRANTY; without even the implied warranty of
9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 GNU General Public License for more details.
12 You should have received a copy of the GNU General Public License
13 along with this program; if not, write to the Free Software
14 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */
16 #ifndef INCLUDES_MYSQL_INSTANCE_MANAGER_LOG_H
17 #define INCLUDES_MYSQL_INSTANCE_MANAGER_LOG_H
20 Logging facilities.
22 Two logging streams are supported: error log and info log.
23 Additionally libdbug may be used for debug information output.
25 ANSI C buffered I/O is used to perform logging.
27 Logging is performed via stdout/stder, so one can reopen them to point to
28 ordinary files. To initialize logging environment log_init() must be called.
30 Rationale:
31 - no MYSQL_LOG as it has BIN mode, and not easy to fetch from sql_class.h
32 - no constructors/desctructors to make logging available all the time
36 void log_init();
39 void log_info(const char *format, ...)
40 #ifdef __GNUC__
41 __attribute__ ((format(printf, 1, 2)))
42 #endif
46 void log_error(const char *format, ...)
47 #ifdef __GNUC__
48 __attribute__ ((format (printf, 1, 2)))
49 #endif
53 void die(const char *format, ...)
54 #ifdef __GNUC__
55 __attribute__ ((format (printf, 1, 2)))
56 #endif
59 #endif // INCLUDES_MYSQL_INSTANCE_MANAGER_LOG_H