log.h 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #ifndef foologhfoo
  2. #define foologhfoo
  3. /***
  4. This file is part of avahi.
  5. avahi is free software; you can redistribute it and/or modify it
  6. under the terms of the GNU Lesser General Public License as
  7. published by the Free Software Foundation; either version 2.1 of the
  8. License, or (at your option) any later version.
  9. avahi is distributed in the hope that it will be useful, but WITHOUT
  10. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
  12. Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public
  14. License along with avahi; if not, write to the Free Software
  15. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  16. USA.
  17. ***/
  18. #include <stdarg.h>
  19. #include <avahi-common/cdecl.h>
  20. #include <avahi-common/gccmacro.h>
  21. /** \file log.h Extensible logging subsystem */
  22. AVAHI_C_DECL_BEGIN
  23. /** Log level for avahi_log_xxx() */
  24. typedef enum {
  25. AVAHI_LOG_ERROR = 0, /**< Error messages */
  26. AVAHI_LOG_WARN = 1, /**< Warning messages */
  27. AVAHI_LOG_NOTICE = 2, /**< Notice messages */
  28. AVAHI_LOG_INFO = 3, /**< Info messages */
  29. AVAHI_LOG_DEBUG = 4, /**< Debug messages */
  30. AVAHI_LOG_LEVEL_MAX
  31. } AvahiLogLevel;
  32. /** Prototype for a user supplied log function */
  33. typedef void (*AvahiLogFunction)(AvahiLogLevel level, const char *txt);
  34. /** Set a user supplied log function, replacing the default which
  35. * prints to log messages unconditionally to STDERR. Pass NULL for
  36. * resetting to the default log function */
  37. void avahi_set_log_function(AvahiLogFunction function);
  38. /** Issue a log message using a va_list object */
  39. void avahi_log_ap(AvahiLogLevel level, const char *format, va_list ap);
  40. /** Issue a log message by passing a log level and a format string */
  41. void avahi_log(AvahiLogLevel level, const char*format, ...) AVAHI_GCC_PRINTF_ATTR23;
  42. /** Shortcut for avahi_log(AVAHI_LOG_ERROR, ...) */
  43. void avahi_log_error(const char*format, ...) AVAHI_GCC_PRINTF_ATTR12;
  44. /** Shortcut for avahi_log(AVAHI_LOG_WARN, ...) */
  45. void avahi_log_warn(const char*format, ...) AVAHI_GCC_PRINTF_ATTR12;
  46. /** Shortcut for avahi_log(AVAHI_LOG_NOTICE, ...) */
  47. void avahi_log_notice(const char*format, ...) AVAHI_GCC_PRINTF_ATTR12;
  48. /** Shortcut for avahi_log(AVAHI_LOG_INFO, ...) */
  49. void avahi_log_info(const char*format, ...) AVAHI_GCC_PRINTF_ATTR12;
  50. /** Shortcut for avahi_log(AVAHI_LOG_DEBUG, ...) */
  51. void avahi_log_debug(const char*format, ...) AVAHI_GCC_PRINTF_ATTR12;
  52. AVAHI_C_DECL_END
  53. #endif