/* $Id: wi-log.h 4540 2007-02-08 17:58:20Z morris $ */ /* * Copyright (c) 2003-2007 Axel Andersson * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #ifndef WI_LOG_H #define WI_LOG_H 1 #include enum _wi_log_level { WI_LOG_NORMAL = 0, WI_LOG_VERBOSE1, WI_LOG_VERBOSE2, WI_LOG_DEBUG, WI_LOG_MAX }; typedef enum _wi_log_level wi_log_level_t; typedef void wi_log_callback_func_t(wi_string_t *); WI_EXPORT void wi_log_open(void); WI_EXPORT void wi_log_close(void); WI_EXPORT int wi_log_syslog_facility_with_name(wi_string_t *); WI_EXPORT void wi_log_debug(wi_string_t *, ...); WI_EXPORT void wi_log_info(wi_string_t *, ...); WI_EXPORT void wi_log_warn(wi_string_t *, ...); WI_EXPORT void wi_log_err(wi_string_t *, ...); WI_EXPORT void wi_log_l(wi_string_t *, ...); WI_EXPORT void wi_log_ll(wi_string_t *, ...); WI_EXPORT wi_boolean_t wi_log_stdout; WI_EXPORT wi_boolean_t wi_log_stderr; WI_EXPORT wi_boolean_t wi_log_startup; WI_EXPORT wi_boolean_t wi_log_tool; WI_EXPORT wi_boolean_t wi_log_plain; WI_EXPORT wi_boolean_t wi_log_syslog; WI_EXPORT wi_boolean_t wi_log_file; WI_EXPORT wi_log_level_t wi_log_level; WI_EXPORT int wi_log_syslog_facility; WI_EXPORT wi_uinteger_t wi_log_limit; WI_EXPORT wi_string_t *wi_log_path; WI_EXPORT wi_log_callback_func_t *wi_log_callback; #endif /* WI_LOG_H */