Sha256: ed43a5f94d940f0c50e98c62e99ac046e26d546c80854f1ac43f75685145cd7d
Contents?: true
Size: 1.86 KB
Versions: 3
Compression:
Stored size: 1.86 KB
Contents
/* * A simple logging library. * * Some good logging guidelines can be found here: * http://watchitlater.com/blog/2009/12/logging-guidelines/ * * Author: Yasuhito Takamiya <yasuhito@gmail.com> * * Copyright (C) 2008-2012 NEC Corporation * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License, version 2, as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /** * @file * * @brief Versatile support for logging messages with different levels * of importance. */ #ifndef LOG_H #define LOG_H #include "bool.h" #include <syslog.h> typedef enum { LOGGING_TYPE_FILE = 0x1, LOGGING_TYPE_SYSLOG = 0x2, LOGGING_TYPE_STDOUT = 0x4, } logging_type; bool init_log( const char *ident, const char *log_directory, logging_type type ); void restart_log( const char *new_ident ); void rename_log( const char *new_ident ); bool finalize_log( void ); bool set_logging_level( const char *level ); extern int ( *get_logging_level )( void ); extern void ( *critical )( const char *format, ... ); extern void ( *error )( const char *format, ... ); extern void ( *warn )( const char *format, ... ); extern void ( *notice )( const char *format, ... ); extern void ( *info )( const char *format, ... ); extern void ( *debug )( const char *format, ... ); #endif // LOG_H /* * Local variables: * c-basic-offset: 2 * indent-tabs-mode: nil * End: */
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
trema-0.2.5 | src/lib/log.h |
trema-0.2.4 | src/lib/log.h |
trema-0.2.3 | src/lib/log.h |