/usr/include/libprelude/prelude-log.h is in libprelude-dev 1.0.0-11.7ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | /*****
*
* Copyright (C) 2005,2006,2007 PreludeIDS Technologies. All Rights Reserved.
* Author: Yoann Vandoorselaere <yoann.v@prelude-ids.com>
*
* This file is part of the Prelude library.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* 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; see the file COPYING. If not, write to
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*
*****/
#ifndef _LIBPRELUDE_PRELUDE_LOG_H
#define _LIBPRELUDE_PRELUDE_LOG_H
#include "prelude-config.h"
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <stdarg.h>
#ifdef __cplusplus
extern "C" {
#endif
#ifndef __attribute__
/* This feature is available in gcc versions 2.5 and later. */
# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5) || __STRICT_ANSI__
# define __attribute__(Spec) /* empty */
# endif
/* The __-protected variants of `format' and `printf' attributes
are accepted by gcc versions 2.6.4 (effectively 2.7) and later. */
# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7)
# define __format__ format
# define __printf__ printf
# endif
#endif
typedef enum {
PRELUDE_LOG_CRIT = -1,
PRELUDE_LOG_ERR = 0,
PRELUDE_LOG_WARN = 1,
PRELUDE_LOG_INFO = 2,
PRELUDE_LOG_DEBUG = 3
} prelude_log_t;
typedef enum {
PRELUDE_LOG_FLAGS_QUIET = 0x01, /* Drop PRELUDE_LOG_PRIORITY_INFO */
PRELUDE_LOG_FLAGS_SYSLOG = 0x02
} prelude_log_flags_t;
void _prelude_log_v(prelude_log_t level, const char *file,
const char *function, int line, const char *fmt, va_list ap)
__attribute__ ((__format__ (__printf__, 5, 0)));
void _prelude_log(prelude_log_t level, const char *file,
const char *function, int line, const char *fmt, ...)
__attribute__ ((__format__ (__printf__, 5, 6)));
#ifdef HAVE_VARIADIC_MACROS
#define prelude_log(level, ...) \
_prelude_log(level, __FILE__, __PRELUDE_FUNC__, __LINE__, __VA_ARGS__)
#define prelude_log_debug(level, ...) \
_prelude_log(PRELUDE_LOG_DEBUG + level, __FILE__, __PRELUDE_FUNC__, __LINE__, __VA_ARGS__)
#else
void prelude_log(prelude_log_t level, const char *fmt, ...)
__attribute__ ((__format__ (__printf__, 2, 3)));
void prelude_log_debug(prelude_log_t level, const char *fmt, ...)
__attribute__ ((__format__ (__printf__, 2, 3)));
#endif
#define prelude_log_v(level, fmt, ap) \
_prelude_log_v(level, __FILE__, __PRELUDE_FUNC__, __LINE__, fmt, ap)
#define prelude_log_debug_v(level, fmt, ap) \
_prelude_log_v(PRELUDE_LOG_DEBUG + level, __FILE__, __PRELUDE_FUNC__, __LINE__, fmt, ap)
void prelude_log_set_level(prelude_log_t level);
void prelude_log_set_debug_level(int level);
prelude_log_flags_t prelude_log_get_flags(void);
void prelude_log_set_flags(prelude_log_flags_t flags);
char *prelude_log_get_prefix(void);
void prelude_log_set_prefix(char *prefix);
void prelude_log_set_callback(void log_cb(prelude_log_t level, const char *str));
int prelude_log_set_logfile(const char *filename);
void _prelude_log_set_abort_level(prelude_log_t level);
int _prelude_log_set_abort_level_from_string(const char *level);
#ifdef __cplusplus
}
#endif
#endif /* _LIBPRELUDE_PRELUDE_LOG_H */
|