* Add a MAXDEBUG log level.

This commit is contained in:
Justin Maggard
2012-03-08 18:09:55 +00:00
parent 7f3c4349f4
commit 0a0be0d96c
3 changed files with 21 additions and 19 deletions

13
log.h
View File

@ -21,12 +21,13 @@
#ifndef __ERR_H__
#define __ERR_H__
#define E_OFF 0
#define E_FATAL 1
#define E_ERROR 2
#define E_WARN 3
#define E_INFO 4
#define E_DEBUG 5
#define E_OFF 0
#define E_FATAL 1
#define E_ERROR 2
#define E_WARN 3
#define E_INFO 4
#define E_DEBUG 5
#define E_MAXDEBUG 6
enum _log_facility
{