add logging types for smart playlist parser

This commit is contained in:
Ron Pedde 2005-07-14 21:09:42 +00:00
parent 324677564c
commit 681a0f4288
2 changed files with 2 additions and 1 deletions

View File

@ -59,7 +59,7 @@ static unsigned int err_debugmask=0xFFFFFFFF; /**< modules to debug, see \ref lo
/** text list of modules to match for setting debug mask */ /** text list of modules to match for setting debug mask */
static char *err_categorylist[] = { static char *err_categorylist[] = {
"config","webserver","database","scan","query","index","browse", "config","webserver","database","scan","query","index","browse",
"playlist","art","daap","main","rend","xml",NULL "playlist","art","daap","main","rend","xml","parse",NULL
}; };
#ifdef DEBUG_MEMORY #ifdef DEBUG_MEMORY

View File

@ -55,6 +55,7 @@
#define L_MAIN 0x00000400 /**< setup, teardown, signals - main.c */ #define L_MAIN 0x00000400 /**< setup, teardown, signals - main.c */
#define L_REND 0x00000800 /**< rendezvous -- rend-unix.c, rend-posix.c, etc */ #define L_REND 0x00000800 /**< rendezvous -- rend-unix.c, rend-posix.c, etc */
#define L_XML 0x00002000 /**< xml - xml-rpc.c */ #define L_XML 0x00002000 /**< xml - xml-rpc.c */
#define L_PARSE 0x00004000 /**< smart playlist parser */
#define L_MISC 0x80000000 /**< anything else */ #define L_MISC 0x80000000 /**< anything else */
extern int err_debuglevel; extern int err_debuglevel;