Commit fa331d5b authored by winckel's avatar winckel

Renamed some defines to avoid conflict with openair2 log.

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@4643 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent cb2810e6
......@@ -78,12 +78,12 @@ static log_context_t _log_context = {
0x00, /* filter */
0, /* indent */
{
{ "DEBUG", LOG_DEBUG, LOG_GREEN }, /* DEBUG */
{ "INFO", LOG_INFO, LOG_AUTO }, /* INFO */
{ "WARNING", LOG_WARNING, LOG_BLUE }, /* WARNING */
{ "ERROR", LOG_ERROR, LOG_RED }, /* ERROR */
{ "", LOG_FUNC, LOG_AUTO }, /* FUNC_IN */
{ "", LOG_FUNC, LOG_AUTO }, /* FUNC_OUT */
{ "DEBUG", NAS_LOG_DEBUG, LOG_GREEN }, /* DEBUG */
{ "INFO", NAS_LOG_INFO, LOG_AUTO }, /* INFO */
{ "WARNING", NAS_LOG_WARNING, LOG_BLUE }, /* WARNING */
{ "ERROR", NAS_LOG_ERROR, LOG_RED }, /* ERROR */
{ "", NAS_LOG_FUNC, LOG_AUTO }, /* FUNC_IN */
{ "", NAS_LOG_FUNC, LOG_AUTO }, /* FUNC_OUT */
} /* level[] */
};
......@@ -209,7 +209,7 @@ void log_dump(const char* data, int len)
{
int i;
/* Display only authorized logging traces */
if ( (len > 0) && (LOG_HEX & _log_context.filter) )
if ( (len > 0) && (NAS_LOG_HEX & _log_context.filter) )
{
int bytes = 0;
......
......@@ -38,16 +38,16 @@ Description Usefull logging functions
* ON : Enables logging traces excepted FUNC.
* ALL : Turns on ALL logging traces.
*/
#define LOG_OFF 0x00 /* No trace */
#define LOG_DEBUG 0x01 /* Debug trace */
#define LOG_INFO 0x02 /* Informational trace */
#define LOG_WARNING 0x04 /* Warning trace */
#define LOG_ERROR 0x08 /* Error trace */
#define LOG_FUNC 0x10 /* Entering/Leaving function trace */
#define LOG_HEX 0x20 /* Dump trace */
#define LOG_ON 0x0F /* All traces excepted FUNC and HEX */
#define LOG_ALL 0xFF /* All traces */
#define NAS_LOG_OFF 0x00 /* No trace */
#define NAS_LOG_DEBUG 0x01 /* Debug trace */
#define NAS_LOG_INFO 0x02 /* Informational trace */
#define NAS_LOG_WARNING 0x04 /* Warning trace */
#define NAS_LOG_ERROR 0x08 /* Error trace */
#define NAS_LOG_FUNC 0x10 /* Entering/Leaving function trace */
#define NAS_LOG_HEX 0x20 /* Dump trace */
#define NAS_LOG_ON 0x0F /* All traces excepted FUNC and HEX */
#define NAS_LOG_ALL 0xFF /* All traces */
/* Logging severity type */
typedef enum
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment