log.h 1012 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * Copyright (C) 2013 Felix Fietkau <nbd@openwrt.org>
  3. * Copyright (C) 2013 John Crispin <blogic@openwrt.org>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU Lesser General Public License version 2.1
  7. * as published by the Free Software Foundation
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. */
  14. #ifndef __LOG_H
  15. #define __LOG_H
  16. #include <libubox/ulog.h>
  17. #define DEBUG(level, fmt, ...) do { \
  18. if (debug >= level) { \
  19. ulog(LOG_NOTICE, fmt, ## __VA_ARGS__); \
  20. } } while (0)
  21. #define P_DEBUG(level, fmt, ...) do { \
  22. if (debug >= level) { \
  23. ulog(LOG_NOTICE, fmt, ## __VA_ARGS__); \
  24. } else { \
  25. procd_udebug_printf(fmt, ## __VA_ARGS__); \
  26. } } while (0)
  27. #define LOG ULOG_INFO
  28. #define ERROR ULOG_ERR
  29. extern unsigned int debug;
  30. #endif