diff options
author | Cedric BAIL <cedric.bail@free.fr> | 2009-12-21 17:32:19 +0000 |
---|---|---|
committer | Cedric BAIL <cedric.bail@free.fr> | 2009-12-21 17:32:19 +0000 |
commit | d8e18953501c8bed701d66d0acdd4153b1122206 (patch) | |
tree | c75a2f4ce26f4861de6ce956866f8973f2d3a1f0 /legacy/ecore/src/lib/ecore_file/ecore_file_private.h | |
parent | 2410d1f00a95ee235dc7dbf185e89dcd11c9060c (diff) |
* ecore: Use eina_log.
Patch from Mathieu Taillefumier.
SVN revision: 44637
Diffstat (limited to 'legacy/ecore/src/lib/ecore_file/ecore_file_private.h')
-rw-r--r-- | legacy/ecore/src/lib/ecore_file/ecore_file_private.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/legacy/ecore/src/lib/ecore_file/ecore_file_private.h b/legacy/ecore/src/lib/ecore_file/ecore_file_private.h index 5fe5a2e453..073e446ee4 100644 --- a/legacy/ecore/src/lib/ecore_file/ecore_file_private.h +++ b/legacy/ecore/src/lib/ecore_file/ecore_file_private.h | |||
@@ -18,6 +18,32 @@ | |||
18 | 18 | ||
19 | #include "Ecore_File.h" | 19 | #include "Ecore_File.h" |
20 | 20 | ||
21 | extern int _ecore_file_log_dom; | ||
22 | #ifdef ERR | ||
23 | # undef ERR | ||
24 | #endif | ||
25 | #define ERR(...) EINA_LOG_DOM_ERR(_ecore_file_log_dom, __VA_ARGS__) | ||
26 | |||
27 | #ifdef DBG | ||
28 | # undef DBG | ||
29 | #endif | ||
30 | #define DBG(...) EINA_LOG_DOM_DBG(_ecore_file_log_dom, __VA_ARGS__) | ||
31 | |||
32 | #ifdef INF | ||
33 | # undef INF | ||
34 | #endif | ||
35 | #define INF(...) EINA_LOG_DOM_INFO(_ecore_file_log_dom, __VA_ARGS__) | ||
36 | |||
37 | #ifdef WRN | ||
38 | # undef WRN | ||
39 | #endif | ||
40 | #define WRN(...) EINA_LOG_DOM_WARN(_ecore_file_log_dom, __VA_ARGS__) | ||
41 | |||
42 | #ifdef CRIT | ||
43 | # undef CRIT | ||
44 | #endif | ||
45 | #define CRIT(...) EINA_LOG_DOM_CRIT(_ecore_file_log_dom, __VA_ARGS__) | ||
46 | |||
21 | /* ecore_file_monitor */ | 47 | /* ecore_file_monitor */ |
22 | int ecore_file_monitor_init(void); | 48 | int ecore_file_monitor_init(void); |
23 | void ecore_file_monitor_shutdown(void); | 49 | void ecore_file_monitor_shutdown(void); |