fix eina to not use deprecated eina_error logging.

SVN revision: 42229
This commit is contained in:
Gustavo Sverzut Barbieri 2009-09-04 02:42:51 +00:00
parent 4d5fbb7742
commit e455e6f5b9
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@
#include "Evas.h" #include "Evas.h"
#include "evas_cs.h" #include "evas_cs.h"
#define D(fmt, args...) EINA_ERROR_PDBG(fmt, ##args) #define D(...) EINA_LOG_DBG(__VA_ARGS__)
// fixme:'s // fixme:'s
// //
@ -1348,7 +1348,7 @@ parse_args(int argc, char **argv)
} }
else if (!strcmp(argv[i], "-debug")) else if (!strcmp(argv[i], "-debug"))
{ {
eina_error_log_level_set(EINA_ERROR_LEVEL_DBG); eina_log_level_set(EINA_LOG_LEVEL_DBG);
} }
} }
} }