Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
This change corrects the definition of the macro
[simgrid.git] / include / xbt / log.h
1 /* $Id$ */
2
3 /* log - a generic logging facility in the spirit of log4j                  */
4
5 /* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved.            */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10 /** @addtogroup XBT_log
11  *  @brief A generic logging facility in the spirit of log4j (grounding feature)
12  *
13  *
14  */
15  
16 /** \defgroup XBT_log_cats Existing log categories
17  *  \ingroup XBT_log
18  *  \brief (automatically extracted) 
19  *     
20  *  This is the list of all existing log categories in SimGrid.
21  *  This list was automatically extracted from the source code by
22  *  the src/xbt_log_extract_hierarchy utility.
23  *     
24  *  You can thus be certain that it is uptodate, but it may somehow
25  *  lack a final manual touch.
26  *  Anyway, nothing's perfect ;)
27  */
28
29 /* XBT_LOG_MAYDAY: define this to replace the logging facilities with basic
30    printf function. Useful to debug the logging facilities themselves */
31 #undef XBT_LOG_MAYDAY
32 /*#define XBT_LOG_MAYDAY*/
33
34 #ifndef _XBT_LOG_H_
35 #define _XBT_LOG_H_
36
37 #include "xbt/misc.h"
38
39 #include <stdarg.h>
40 SG_BEGIN_DECL()
41 /**\brief Log priorities
42  * \ingroup XBT_log
43  *
44  * The different existing priorities.
45 */
46 typedef enum {
47   xbt_log_priority_none          = 0,  /* used internally (don't poke with) */
48   xbt_log_priority_trace         = 1,  /**< enter and return of some functions */
49   xbt_log_priority_debug         = 2,  /**< crufty output  */
50   xbt_log_priority_verbose       = 3,  /**< verbose output for the user wanting more */
51   xbt_log_priority_info          = 4,  /**< output about the regular functionning */
52   xbt_log_priority_warning       = 5,  /**< minor issue encountered */
53   xbt_log_priority_error         = 6,  /**< issue encountered */
54   xbt_log_priority_critical      = 7,  /**< major issue encountered */
55
56   xbt_log_priority_infinite      = 8,  /**< value for XBT_LOG_STATIC_THRESHOLD to not log */
57
58   xbt_log_priority_uninitialized = -1  /* used internally (don't poke with) */
59 } e_xbt_log_priority_t;
60               
61
62 /*
63  * define NLOG to disable at compilation time any logging request
64  * define NDEBUG to disable at compilation time any logging request of priority below INFO
65  */
66
67
68 /**
69  * @def XBT_LOG_STATIC_THRESHOLD
70  * @ingroup XBT_log
71  *
72  * All logging requests with priority < XBT_LOG_STATIC_THRESHOLD are disabled at
73  * compile time, i.e., compiled out.
74  */
75 #ifdef NLOG
76 #  define XBT_LOG_STATIC_THRESHOLD xbt_log_priority_infinite
77 #else
78
79 #  ifdef NDEBUG
80 #    define XBT_LOG_STATIC_THRESHOLD xbt_log_priority_verbose
81 #  else /* !NLOG && !NDEBUG */
82
83 #    ifndef XBT_LOG_STATIC_THRESHOLD
84 #      define XBT_LOG_STATIC_THRESHOLD xbt_log_priority_none
85 #    endif /* !XBT_LOG_STATIC_THRESHOLD */
86 #  endif /* NDEBUG */
87 #endif /* !defined(NLOG) */
88
89 /* Transforms a category name to a global variable name. */
90 #define _XBT_LOGV(cat)   _XBT_LOG_CONCAT(_simgrid_this_log_category_does_not_exist__, cat)
91 #define _XBT_LOG_CONCAT(x,y) x ## y
92
93 /* The root of the category hierarchy. */
94 #define XBT_LOG_ROOT_CAT   root
95
96 /* XBT_LOG_NEW_SUBCATEGORY_helper:
97  * Implementation of XBT_LOG_NEW_SUBCATEGORY, which must declare "extern parent" in addition
98  * to avoid an extra declaration of root when XBT_LOG_NEW_SUBCATEGORY is called by
99  * XBT_LOG_NEW_CATEGORY */
100 #define XBT_LOG_NEW_SUBCATEGORY_helper(catName, parent, desc) \
101     XBT_EXPORT_NO_IMPORT(s_xbt_log_category_t) _XBT_LOGV(catName) = {       \
102         NULL,                             \
103         NULL /* firstChild */,                          \
104         NULL /* nextSibling */,                         \
105         #catName,                                       \
106         xbt_log_priority_uninitialized /* threshold */, \
107         1 /* isThreshInherited */,                      \
108         NULL /* appender */,                            \
109         NULL /* layout */,                              \
110         1 /* additivity */                              \
111     }
112 /**
113  * \ingroup XBT_log
114  * \param catName name of new category
115  * \param parent father of the new category in the tree
116  * \param desc string describing the purpose of this category
117  * \hideinitializer
118  *
119  * Defines a new subcategory of the parent. 
120  */
121 #define XBT_LOG_NEW_SUBCATEGORY(catName, parent, desc)    \
122     extern s_xbt_log_category_t _XBT_LOGV(parent); \
123     XBT_LOG_NEW_SUBCATEGORY_helper(catName, parent, desc) \
124
125 /**
126  * \ingroup XBT_log  
127  * \param catName name of new category
128  * \param desc string describing the purpose of this category
129  * \hideinitializer
130  *
131  * Creates a new subcategory of the root category.
132  */
133 # define XBT_LOG_NEW_CATEGORY(catName,desc)  \
134    XBT_LOG_NEW_SUBCATEGORY_helper(catName, XBT_LOG_ROOT_CAT, desc)  
135
136
137 /**
138  * \ingroup XBT_log  
139  * \param cname name of the cat
140  * \hideinitializer
141  *
142  * Indicates which category is the default one.
143  */
144
145 #if defined(XBT_LOG_MAYDAY) /*|| defined (NLOG) * turning logging off */
146 # define XBT_LOG_DEFAULT_CATEGORY(cname)
147 #else
148 # define XBT_LOG_DEFAULT_CATEGORY(cname) \
149          static xbt_log_category_t _XBT_LOGV(default) _XBT_GNUC_UNUSED = &_XBT_LOGV(cname) 
150 #endif
151
152 /**
153  * \ingroup XBT_log  
154  * \param cname name of the cat
155  * \param desc string describing the purpose of this category
156  * \hideinitializer
157  *
158  * Creates a new subcategory of the root category and makes it the default
159  * (used by macros that don't explicitly specify a category).
160  */
161 /* Damnit Malek. There is no difference between the WINDOWS version and the regular one.
162  * Moreover, portability cruft MUST be kept out of this file. If you need another definition of EXPORT_NO_IMPORT, do so in misc, not here.
163  * Killing your crufty definition once again (I hate dupplicated code). Please do not readd them without a good justification
164 */
165 #if (defined(_WIN32) && !defined(DLL_STATIC))
166 # define XBT_LOG_NEW_ROOT_SUBCATEGORY(cname,desc) \
167         XBT_EXPORT_NO_IMPORT(s_xbt_log_category_t) _XBT_LOGV(cname) = {       \
168         NULL, NULL, NULL,                    \
169                 #cname, xbt_log_priority_uninitialized, 1, \
170         NULL, NULL, 1                                          \
171     }
172 # define XBT_LOG_NEW_DEFAULT_CATEGORY(cname,desc)        \
173         XBT_LOG_NEW_ROOT_SUBCATEGORY(cname,desc); \
174         XBT_LOG_DEFAULT_CATEGORY(cname)
175     
176 #else
177 # define XBT_LOG_NEW_DEFAULT_CATEGORY(cname,desc)        \
178     XBT_LOG_NEW_CATEGORY(cname,desc);                   \
179     XBT_LOG_DEFAULT_CATEGORY(cname)
180 #endif
181
182
183
184 /**
185  * \ingroup XBT_log  
186  * \param cname name of the cat
187  * \param parent name of the parent
188  * \param desc string describing the purpose of this category
189  * \hideinitializer
190  *
191  * Creates a new subcategory of the parent category and makes it the default
192  * (used by macros that don't explicitly specify a category).
193  */
194 #define XBT_LOG_NEW_DEFAULT_SUBCATEGORY(cname, parent, desc) \
195     XBT_LOG_NEW_SUBCATEGORY(cname, parent, desc);            \
196     XBT_LOG_DEFAULT_CATEGORY(cname)
197
198 /**
199  * \ingroup XBT_log  
200  * \param cname name of the cat
201  * \hideinitializer
202  *
203  * Indicates that a category you'll use in this file (to get subcategories of it, 
204  * for example) really lives in another file.
205  */
206
207 #define XBT_LOG_EXTERNAL_CATEGORY(cname) \
208    extern s_xbt_log_category_t _XBT_LOGV(cname)
209
210 /**
211  * \ingroup XBT_log
212  * \param cname name of the cat
213  * \hideinitializer
214  *
215  * Indicates that the default category of this file was declared in another file.
216  */
217
218 #define XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(cname) \
219    XBT_LOG_EXTERNAL_CATEGORY(cname);\
220    XBT_LOG_DEFAULT_CATEGORY(cname)
221
222 /* Functions you may call */
223
224 XBT_PUBLIC(void) xbt_log_control_set(const char* cs);
225
226 /* Forward declarations */
227 typedef struct xbt_log_appender_s s_xbt_log_appender_t,*xbt_log_appender_t;
228 typedef struct xbt_log_layout_s   s_xbt_log_layout_t,  *xbt_log_layout_t;
229 typedef struct xbt_log_event_s    s_xbt_log_event_t,   *xbt_log_event_t;
230 typedef struct xbt_log_category_s s_xbt_log_category_t,*xbt_log_category_t;
231
232 /*
233  * Do NOT access any members of this structure directly. FIXME: move to private?
234  */
235 #define XBT_LOG_BUFF_SIZE 2048 /* Size of the static string in which we build the log string */
236 struct xbt_log_category_s {
237   xbt_log_category_t parent;
238   xbt_log_category_t firstChild; 
239   xbt_log_category_t nextSibling;
240   const char *name;
241   int threshold;
242   int isThreshInherited;
243   xbt_log_appender_t appender;
244   xbt_log_layout_t layout;
245   int additivity;
246 };
247
248 struct xbt_log_event_s {
249   xbt_log_category_t cat;
250   e_xbt_log_priority_t priority;
251   const char* fileName;
252   const char* functionName;
253   int lineNum; 
254   va_list ap;
255   va_list ap_copy; /* need a copy to launch dynamic layouts when the static ones overflowed */
256   char buffer[XBT_LOG_BUFF_SIZE];
257 };
258
259 /**
260  * \ingroup XBT_log_implem
261  * \param cat the category (not only its name, but the variable)
262  * \param thresholdPriority the priority
263  *
264  * Programatically alters a category's threshold priority (don't use).
265  */
266 XBT_PUBLIC(void) xbt_log_threshold_set(xbt_log_category_t cat,
267                                        e_xbt_log_priority_t thresholdPriority);
268
269 /**
270  * \ingroup XBT_log_implem  
271  * \param cat the category (not only its name, but the variable)
272  * \param parent the parent cat
273  *
274  * Programatically alter a category's parent (don't use).
275  */
276 XBT_PUBLIC(void) xbt_log_parent_set(xbt_log_category_t cat,
277                                 xbt_log_category_t parent);
278
279 /**
280  * \ingroup XBT_log_implem  
281  * \param cat the category (not only its name, but the variable)
282  * \param app the appender
283  *
284  * Programatically sets the category's appender.
285  * (the prefered interface is throught xbt_log_control_set())
286  *
287  */
288 XBT_PUBLIC(void) xbt_log_appender_set(xbt_log_category_t cat,
289                                       xbt_log_appender_t app);
290 /**
291  * \ingroup XBT_log_implem  
292  * \param cat the category (not only its name, but the variable)
293  * \param lay the layout
294  *
295  * Programatically sets the category's layout.
296  * (the prefered interface is throught xbt_log_control_set())
297  *
298  */
299 XBT_PUBLIC(void) xbt_log_layout_set(xbt_log_category_t cat, 
300                                     xbt_log_layout_t lay);
301
302 /**
303  * \ingroup XBT_log_implem  
304  * \param cat the category (not only its name, but the variable)
305  * \param additivity whether logging actions must be passed to parent.
306  *
307  * Programatically sets whether the logging actions must be passed to 
308  * the parent category.
309  * (the prefered interface is throught xbt_log_control_set())
310  *
311  */
312 XBT_PUBLIC(void) xbt_log_additivity_set(xbt_log_category_t cat,
313                                         int additivity);
314
315 /** @brief create a new simple layout 
316  *
317  * This layout is not as flexible as the pattern one
318  */
319 XBT_PUBLIC(xbt_log_layout_t) xbt_log_layout_simple_new(char*arg);
320 XBT_PUBLIC(xbt_log_layout_t) xbt_log_layout_format_new(char*arg);
321 XBT_PUBLIC(xbt_log_appender_t) xbt_log_appender_file_new(char*arg);
322
323
324 /* ********************************** */
325 /* Functions that you shouldn't call  */
326 /* ********************************** */
327 XBT_PUBLIC(void) _xbt_log_event_log(xbt_log_event_t ev,
328                                 const char *fmt,
329                                 ...) _XBT_GNUC_PRINTF(2,3);
330
331 XBT_PUBLIC(int) _xbt_log_cat_init(xbt_log_category_t   category,
332                                   e_xbt_log_priority_t priority);
333
334
335 XBT_PUBLIC_DATA(s_xbt_log_category_t) _XBT_LOGV(XBT_LOG_ROOT_CAT);
336
337
338 extern xbt_log_appender_t xbt_log_default_appender;
339 extern xbt_log_layout_t xbt_log_default_layout;
340
341 /* ********************** */
342 /* Public functions again */
343 /* ********************** */
344
345 /**
346  * \ingroup XBT_log 
347  * \param catName name of the category
348  * \param priority minimal priority to be enabled to return true (must be #e_xbt_log_priority_t)
349  * \hideinitializer
350  *
351  * Returns true if the given priority is enabled for the category.
352  * If you have expensive expressions that are computed outside of the log
353  * command and used only within it, you should make its evaluation conditional
354  * using this macro.
355  */
356 #define XBT_LOG_ISENABLED(catName, priority) \
357             _XBT_LOG_ISENABLEDV(_XBT_LOGV(catName), priority)
358
359 /*
360  * Helper function that implements XBT_LOG_ISENABLED.
361  *
362  * NOTES
363  * First part is a compile-time constant.
364  * Call to _log_initCat only happens once.
365  */
366 #define _XBT_LOG_ISENABLEDV(catv, priority)                  \
367        (priority >= XBT_LOG_STATIC_THRESHOLD                 \
368         && priority >= catv.threshold                         \
369         && (catv.threshold != xbt_log_priority_uninitialized \
370             || _xbt_log_cat_init(&catv, priority)) )
371
372 /*
373  * Internal Macros
374  * Some kludge macros to ease maintenance. See how they're used below.
375  *
376  * IMPLEMENTATION NOTE: To reduce the parameter passing overhead of an enabled
377  * message, the many parameters passed to the logging function are packed in a
378  * structure. Since these values will be usually be passed to at least 3
379  * functions, this is a win.
380  * It also allows adding new values (such as a timestamp) without breaking
381  * code. 
382  * Setting the LogEvent's valist member is done inside _log_logEvent.
383  */
384
385 #define _XBT_LOG_PRE(catv, priority) do {                        \
386      if (_XBT_LOG_ISENABLEDV(catv, priority)) {                  \
387          s_xbt_log_event_t _log_ev =                             \
388              {NULL,priority,__FILE__,_XBT_FUNCTION,__LINE__}; \
389                 _log_ev.cat = &(catv);                           \
390               _xbt_log_event_log(&_log_ev                        \
391               
392
393 #define _XBT_LOG_POST                          \
394                         );                      \
395      } } while(0)
396
397
398 /* Logging Macros */
399
400 #ifdef XBT_LOG_MAYDAY
401 # define CLOG0(c, p, f)                   fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__)
402 # define CLOG1(c, p, f,a1)                fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1)               
403 # define CLOG2(c, p, f,a1,a2)             fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2)            
404 # define CLOG3(c, p, f,a1,a2,a3)          fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2,a3)         
405 # define CLOG4(c, p, f,a1,a2,a3,a4)       fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2,a3,a4)      
406 # define CLOG5(c, p, f,a1,a2,a3,a4,a5)    fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2,a3,a4,a5)   
407 # define CLOG6(c, p, f,a1,a2,a3,a4,a5,a6) fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2,a3,a4,a5,a6)
408 # define CLOG7(c, p, f,a1,a2,a3,a4,a5,a6,a7) fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2,a3,a4,a5,a6,a7)
409 # define CLOG8(c, p, f,a1,a2,a3,a4,a5,a6,a7,a8) fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2,a3,a4,a5,a6,a7,a8)
410 # define CLOG9(c, p, f,a1,a2,a3,a4,a5,a6,a7,a8,a9) fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2,a3,a4,a5,a6,a7,a8,a9)
411 # define CLOG10(c, p, f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10) fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)
412 #else
413 # define CLOG0(c, p, f)                   _XBT_LOG_PRE(_XBT_LOGV(c),p) ,f _XBT_LOG_POST            
414 # define CLOG1(c, p, f,a1)                _XBT_LOG_PRE(_XBT_LOGV(c),p) ,f,a1 _XBT_LOG_POST                 
415 # define CLOG2(c, p, f,a1,a2)             _XBT_LOG_PRE(_XBT_LOGV(c),p) ,f,a1,a2 _XBT_LOG_POST
416 # define CLOG3(c, p, f,a1,a2,a3)          _XBT_LOG_PRE(_XBT_LOGV(c),p) ,f,a1,a2,a3 _XBT_LOG_POST
417 # define CLOG4(c, p, f,a1,a2,a3,a4)       _XBT_LOG_PRE(_XBT_LOGV(c),p) ,f,a1,a2,a3,a4 _XBT_LOG_POST
418 # define CLOG5(c, p, f,a1,a2,a3,a4,a5)    _XBT_LOG_PRE(_XBT_LOGV(c),p) ,f,a1,a2,a3,a4,a5 _XBT_LOG_POST
419 # define CLOG6(c, p, f,a1,a2,a3,a4,a5,a6) _XBT_LOG_PRE(_XBT_LOGV(c),p) ,f,a1,a2,a3,a4,a5,a6 _XBT_LOG_POST
420 # define CLOG7(c, p, f,a1,a2,a3,a4,a5,a6,a7) _XBT_LOG_PRE(_XBT_LOGV(c),p) ,f,a1,a2,a3,a4,a5,a6,a7 _XBT_LOG_POST
421 # define CLOG8(c, p, f,a1,a2,a3,a4,a5,a6,a7,a8) _XBT_LOG_PRE(_XBT_LOGV(c),p) ,f,a1,a2,a3,a4,a5,a6,a7,a8 _XBT_LOG_POST
422 # define CLOG9(c, p, f,a1,a2,a3,a4,a5,a6,a7,a8,a9) _XBT_LOG_PRE(_XBT_LOGV(c),p) ,f,a1,a2,a3,a4,a5,a6,a7,a8,a9 _XBT_LOG_POST
423 # define CLOG10(c, p, f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10) _XBT_LOG_PRE(_XBT_LOGV(c),p) ,f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10 _XBT_LOG_POST
424 #endif
425 #define CDEBUG0(c, f)                   CLOG0(c, xbt_log_priority_debug, f)
426 #define CDEBUG1(c, f,a1)                CLOG1(c, xbt_log_priority_debug, f,a1)
427 #define CDEBUG2(c, f,a1,a2)             CLOG2(c, xbt_log_priority_debug, f,a1,a2)
428 #define CDEBUG3(c, f,a1,a2,a3)          CLOG3(c, xbt_log_priority_debug, f,a1,a2,a3)
429 #define CDEBUG4(c, f,a1,a2,a3,a4)       CLOG4(c, xbt_log_priority_debug, f,a1,a2,a3,a4)
430 #define CDEBUG5(c, f,a1,a2,a3,a4,a5)    CLOG5(c, xbt_log_priority_debug, f,a1,a2,a3,a4,a5)
431 #define CDEBUG6(c, f,a1,a2,a3,a4,a5,a6) CLOG6(c, xbt_log_priority_debug, f,a1,a2,a3,a4,a5,a6)
432 #define CDEBUG7(c, f,a1,a2,a3,a4,a5,a6,a7) CLOG7(c, xbt_log_priority_debug, f,a1,a2,a3,a4,a5,a6,a7)
433 #define CDEBUG8(c, f,a1,a2,a3,a4,a5,a6,a7,a8) CLOG8(c, xbt_log_priority_debug, f,a1,a2,a3,a4,a5,a6,a7,a8)
434 #define CDEBUG9(c, f,a1,a2,a3,a4,a5,a6,a7,a8,a9) CLOG9(c, xbt_log_priority_debug, f,a1,a2,a3,a4,a5,a6,a7,a8,a9)
435 /** @ingroup XBT_log
436  *  @hideinitializer
437  * \param c the category on which to log
438  * \param f the format string
439  * \param a1 first argument of the format
440  * \param a2 second argument of the format
441  * \param a3 third argument of the format
442  * \param a4 fourth argument of the format
443  * \param a5 fifth argument of the format
444  * \param a6 sixth argument of the format
445  * \param a7 seventh argument of the format
446  * \param a8 eighth argument of the format
447  * \param a9 ninth argument of the format
448  * \param a10 tenth argument of the format
449  *  @brief Log an event at the DEBUG priority on the specified category with these args (CDEBUGn exists for any n<10).
450  */
451 #define CDEBUG10(c, f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10) CLOG10(c, xbt_log_priority_debug, f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)
452
453 #define CVERB0(c, f)                   CLOG0(c, xbt_log_priority_verbose, f)
454 #define CVERB1(c, f,a1)                CLOG1(c, xbt_log_priority_verbose, f,a1)
455 #define CVERB2(c, f,a1,a2)             CLOG2(c, xbt_log_priority_verbose, f,a1,a2)
456 #define CVERB3(c, f,a1,a2,a3)          CLOG3(c, xbt_log_priority_verbose, f,a1,a2,a3)
457 #define CVERB4(c, f,a1,a2,a3,a4)       CLOG4(c, xbt_log_priority_verbose, f,a1,a2,a3,a4)
458 #define CVERB5(c, f,a1,a2,a3,a4,a5)    CLOG5(c, xbt_log_priority_verbose, f,a1,a2,a3,a4,a5)
459 #define CVERB6(c, f,a1,a2,a3,a4,a5,a6)    CLOG6(c, xbt_log_priority_verbose, f,a1,a2,a3,a4,a5,a6)
460 #define CVERB7(c, f,a1,a2,a3,a4,a5,a6,a7)    CLOG7(c, xbt_log_priority_verbose, f,a1,a2,a3,a4,a5,a6,a7)
461 #define CVERB8(c, f,a1,a2,a3,a4,a5,a6,a7,a8)    CLOG8(c, xbt_log_priority_verbose, f,a1,a2,a3,a4,a5,a6,a7,a8)
462 #define CVERB9(c, f,a1,a2,a3,a4,a5,a6,a7,a8,a9)    CLOG9(c, xbt_log_priority_verbose, f,a1,a2,a3,a4,a5,a6,a7,a8,a9)
463 /** @ingroup XBT_log
464  *  @hideinitializer
465  *  @brief Log an event at the VERB priority on the specified category with these args (CVERBn exists for any n<10).
466  */
467 #define CVERB10(c, f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)    CLOG10(c, xbt_log_priority_verbose, f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)
468
469 #define CINFO0(c, f)                   CLOG0(c, xbt_log_priority_info, f)
470 #define CINFO1(c, f,a1)                CLOG1(c, xbt_log_priority_info, f,a1)
471 #define CINFO2(c, f,a1,a2)             CLOG2(c, xbt_log_priority_info, f,a1,a2)
472 #define CINFO3(c, f,a1,a2,a3)          CLOG3(c, xbt_log_priority_info, f,a1,a2,a3)
473 #define CINFO4(c, f,a1,a2,a3,a4)       CLOG4(c, xbt_log_priority_info, f,a1,a2,a3,a4)
474 #define CINFO5(c, f,a1,a2,a3,a4,a5)    CLOG5(c, xbt_log_priority_info, f,a1,a2,a3,a4,a5)
475 #define CINFO6(c, f,a1,a2,a3,a4,a5,a6) CLOG6(c, xbt_log_priority_info, f,a1,a2,a3,a4,a5,a6)
476 #define CINFO7(c, f,a1,a2,a3,a4,a5,a6,a7) CLOG7(c, xbt_log_priority_info, f,a1,a2,a3,a4,a5,a6,a7)
477 #define CINFO8(c, f,a1,a2,a3,a4,a5,a6,a7,a8) CLOG8(c, xbt_log_priority_info, f,a1,a2,a3,a4,a5,a6,a7,a8)
478 #define CINFO9(c, f,a1,a2,a3,a4,a5,a6,a7,a8,a9) CLOG9(c, xbt_log_priority_info, f,a1,a2,a3,a4,a5,a6,a7,a8,a9)
479 /** @ingroup XBT_log
480  *  @hideinitializer
481  *  @brief Log an event at the INFO priority on the specified category with these args (CINFOn exists for any n<10).
482  */
483 #define CINFO10(c, f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10) CLOG10(c, xbt_log_priority_info, f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)
484
485 #define CWARN0(c, f)                   CLOG0(c, xbt_log_priority_warning, f)
486 #define CWARN1(c, f,a1)                CLOG1(c, xbt_log_priority_warning, f,a1)
487 #define CWARN2(c, f,a1,a2)             CLOG2(c, xbt_log_priority_warning, f,a1,a2)
488 #define CWARN3(c, f,a1,a2,a3)          CLOG3(c, xbt_log_priority_warning, f,a1,a2,a3)
489 #define CWARN4(c, f,a1,a2,a3,a4)       CLOG4(c, xbt_log_priority_warning, f,a1,a2,a3,a4)
490 #define CWARN5(c, f,a1,a2,a3,a4,a5)    CLOG5(c, xbt_log_priority_warning, f,a1,a2,a3,a4,a5)
491 #define CWARN6(c, f,a1,a2,a3,a4,a5,a6) CLOG6(c, xbt_log_priority_warning, f,a1,a2,a3,a4,a5,a6)
492 #define CWARN7(c, f,a1,a2,a3,a4,a5,a6,a7) CLOG7(c, xbt_log_priority_warning, f,a1,a2,a3,a4,a5,a6,a7)
493 #define CWARN8(c, f,a1,a2,a3,a4,a5,a6,a7,a8) CLOG8(c, xbt_log_priority_warning, f,a1,a2,a3,a4,a5,a6,a7,a8)
494 #define CWARN9(c, f,a1,a2,a3,a4,a5,a6,a7,a8,a9) CLOG9(c, xbt_log_priority_warning, f,a1,a2,a3,a4,a5,a6,a7,a8,a9)
495 /** @ingroup XBT_log
496  *  @hideinitializer
497  *  @brief Log an event at the WARN priority on the specified category with these args (CWARNn exists for any n<10).
498  */
499 #define CWARN10(c, f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10) CLOG10(c, xbt_log_priority_warning, f,a1,a2,a3,a4,a5,a6,a7,a8,a9,10)
500
501 #define CERROR0(c, f)                   CLOG0(c, xbt_log_priority_error, f)
502 #define CERROR1(c, f,a1)                CLOG1(c, xbt_log_priority_error, f,a1)
503 #define CERROR2(c, f,a1,a2)             CLOG2(c, xbt_log_priority_error, f,a1,a2)
504 #define CERROR3(c, f,a1,a2,a3)          CLOG3(c, xbt_log_priority_error, f,a1,a2,a3)
505 #define CERROR4(c, f,a1,a2,a3,a4)       CLOG4(c, xbt_log_priority_error, f,a1,a2,a3,a4)
506 #define CERROR5(c, f,a1,a2,a3,a4,a5)    CLOG5(c, xbt_log_priority_error, f,a1,a2,a3,a4,a5)
507 #define CERROR6(c, f,a1,a2,a3,a4,a5,a6) CLOG6(c, xbt_log_priority_error, f,a1,a2,a3,a4,a5,a6)
508 #define CERROR7(c, f,a1,a2,a3,a4,a5,a6,a7) CLOG7(c, xbt_log_priority_error, f,a1,a2,a3,a4,a5,a6,a7)
509 #define CERROR8(c, f,a1,a2,a3,a4,a5,a6,a7,a8) CLOG8(c, xbt_log_priority_error, f,a1,a2,a3,a4,a5,a6,a7,a8)
510 #define CERROR9(c, f,a1,a2,a3,a4,a5,a6,a7,a8,a9) CLOG9(c, xbt_log_priority_error, f,a1,a2,a3,a4,a5,a6,a7,a8,a9)
511 /** @ingroup XBT_log
512  *  @hideinitializer
513  *  @brief Log an event at the ERROR priority on the specified category with these args (CERRORn exists for any n<10).
514  */
515 #define CERROR10(c, f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10) CLOG10(c, xbt_log_priority_error, f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)
516
517 #define CCRITICAL0(c, f)                   CLOG0(c, xbt_log_priority_critical, f)
518 #define CCRITICAL1(c, f,a1)                CLOG1(c, xbt_log_priority_critical, f,a1)
519 #define CCRITICAL2(c, f,a1,a2)             CLOG2(c, xbt_log_priority_critical, f,a1,a2)
520 #define CCRITICAL3(c, f,a1,a2,a3)          CLOG3(c, xbt_log_priority_critical, f,a1,a2,a3)
521 #define CCRITICAL4(c, f,a1,a2,a3,a4)       CLOG4(c, xbt_log_priority_critical, f,a1,a2,a3,a4)
522 #define CCRITICAL5(c, f,a1,a2,a3,a4,a5)    CLOG5(c, xbt_log_priority_critical, f,a1,a2,a3,a4,a5)
523 #define CCRITICAL6(c, f,a1,a2,a3,a4,a5,a6)    CLOG6(c, xbt_log_priority_critical, f,a1,a2,a3,a4,a5,a6)
524 #define CCRITICAL7(c, f,a1,a2,a3,a4,a5,a6,a7)    CLOG7(c, xbt_log_priority_critical, f,a1,a2,a3,a4,a5,a6,a7)
525 #define CCRITICAL8(c, f,a1,a2,a3,a4,a5,a6,a7,a8)    CLOG8(c, xbt_log_priority_critical, f,a1,a2,a3,a4,a5,a6,a7,a8)
526 #define CCRITICAL9(c, f,a1,a2,a3,a4,a5,a6,a7,a8,a9)    CLOG9(c, xbt_log_priority_critical, f,a1,a2,a3,a4,a5,a6,a7,a8,a9)
527 /** @ingroup XBT_log
528  *  @hideinitializer
529  *  @brief Log an event at the CRITICAL priority on the specified category with these args (CCRITICALn exists for any n<10).
530  */
531 #define CCRITICAL10(c, f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)    CLOG10(c, xbt_log_priority_critical, f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)
532
533 #ifdef XBT_LOG_MAYDAY
534 # define LOG0(p, f)                   fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__)
535 # define LOG1(p, f,a1)                fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1)               
536 # define LOG2(p, f,a1,a2)             fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2)            
537 # define LOG3(p, f,a1,a2,a3)          fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2,a3)         
538 # define LOG4(p, f,a1,a2,a3,a4)       fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2,a3,a4)      
539 # define LOG5(p, f,a1,a2,a3,a4,a5)    fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2,a3,a4,a5)   
540 # define LOG6(p, f,a1,a2,a3,a4,a5,a6) fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2,a3,a4,a5,a6)
541 # define LOG7(p, f,a1,a2,a3,a4,a5,a6,a7) fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2,a3,a4,a5,a6,a7)
542 # define LOG8(p, f,a1,a2,a3,a4,a5,a6,a7,a8) fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2,a3,a4,a5,a6,a7,a8)
543 # define LOG9(p, f,a1,a2,a3,a4,a5,a6,a7,a8,a9) fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2,a3,a4,a5,a6,a7,a8,a9)
544 # define LOG10(p, f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10) fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)
545 #else
546 # define LOG0(p, f)                   _XBT_LOG_PRE((*_XBT_LOGV(default)),p) ,f _XBT_LOG_POST
547 # define LOG1(p, f,a1)                _XBT_LOG_PRE((*_XBT_LOGV(default)),p) ,f,a1 _XBT_LOG_POST
548 # define LOG2(p, f,a1,a2)             _XBT_LOG_PRE((*_XBT_LOGV(default)),p) ,f,a1,a2 _XBT_LOG_POST
549 # define LOG3(p, f,a1,a2,a3)          _XBT_LOG_PRE((*_XBT_LOGV(default)),p) ,f,a1,a2,a3 _XBT_LOG_POST
550 # define LOG4(p, f,a1,a2,a3,a4)       _XBT_LOG_PRE((*_XBT_LOGV(default)),p) ,f,a1,a2,a3,a4 _XBT_LOG_POST
551 # define LOG5(p, f,a1,a2,a3,a4,a5)    _XBT_LOG_PRE((*_XBT_LOGV(default)),p) ,f,a1,a2,a3,a4,a5 _XBT_LOG_POST
552 # define LOG6(p, f,a1,a2,a3,a4,a5,a6) _XBT_LOG_PRE((*_XBT_LOGV(default)),p) ,f,a1,a2,a3,a4,a5,a6 _XBT_LOG_POST
553 # define LOG7(p, f,a1,a2,a3,a4,a5,a6,a7) _XBT_LOG_PRE((*_XBT_LOGV(default)),p) ,f,a1,a2,a3,a4,a5,a6,a7 _XBT_LOG_POST
554 # define LOG8(p, f,a1,a2,a3,a4,a5,a6,a7,a8) _XBT_LOG_PRE((*_XBT_LOGV(default)),p) ,f,a1,a2,a3,a4,a5,a6,a7,a8 _XBT_LOG_POST
555 # define LOG9(p, f,a1,a2,a3,a4,a5,a6,a7,a8,a9) _XBT_LOG_PRE((*_XBT_LOGV(default)),p) ,f,a1,a2,a3,a4,a5,a6,a7,a8,a9 _XBT_LOG_POST
556 # define LOG10(p,f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10) _XBT_LOG_PRE((*_XBT_LOGV(default)),p) ,f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10 _XBT_LOG_POST
557 #endif
558
559 #define DEBUG0(f)                   LOG0(xbt_log_priority_debug, f)
560 #define DEBUG1(f,a1)                LOG1(xbt_log_priority_debug, f,a1)
561 #define DEBUG2(f,a1,a2)             LOG2(xbt_log_priority_debug, f,a1,a2)
562 #define DEBUG3(f,a1,a2,a3)          LOG3(xbt_log_priority_debug, f,a1,a2,a3)
563 #define DEBUG4(f,a1,a2,a3,a4)       LOG4(xbt_log_priority_debug, f,a1,a2,a3,a4)
564 #define DEBUG5(f,a1,a2,a3,a4,a5)    LOG5(xbt_log_priority_debug, f,a1,a2,a3,a4,a5)
565 #define DEBUG6(f,a1,a2,a3,a4,a5,a6) LOG6(xbt_log_priority_debug, f,a1,a2,a3,a4,a5,a6)
566 #define DEBUG7(f,a1,a2,a3,a4,a5,a6,a7) LOG7(xbt_log_priority_debug, f,a1,a2,a3,a4,a5,a6,a7)
567 #define DEBUG8(f,a1,a2,a3,a4,a5,a6,a7,a8) LOG8(xbt_log_priority_debug, f,a1,a2,a3,a4,a5,a6,a7,a8)
568 #define DEBUG9(f,a1,a2,a3,a4,a5,a6,a7,a8,a9) LOG9(xbt_log_priority_debug, f,a1,a2,a3,a4,a5,a6,a7,a8,a9)
569 /** @ingroup XBT_log
570  *  @hideinitializer
571  * \param f the format string
572  * \param a1 first argument of the format
573  * \param a2 second argument of the format
574  * \param a3 third argument of the format
575  * \param a4 fourth argument of the format
576  * \param a5 fifth argument of the format
577  * \param a6 sixth argument of the format
578  * \param a7 seventh argument of the format
579  * \param a8 eighth argument of the format
580  * \param a9 ninth argument of the format
581  * \param a10 tenth argument of the format
582  *  @brief Log an event at the DEBUG priority on the default category with these args (DEBUGn exists for any n<10)
583  */
584 #define DEBUG10(f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10) LOG10(xbt_log_priority_debug, f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)
585
586 #define VERB0(f)                   LOG0(xbt_log_priority_verbose, f)
587 #define VERB1(f,a1)                LOG1(xbt_log_priority_verbose, f,a1)
588 #define VERB2(f,a1,a2)             LOG2(xbt_log_priority_verbose, f,a1,a2)
589 #define VERB3(f,a1,a2,a3)          LOG3(xbt_log_priority_verbose, f,a1,a2,a3)
590 #define VERB4(f,a1,a2,a3,a4)       LOG4(xbt_log_priority_verbose, f,a1,a2,a3,a4)
591 #define VERB5(f,a1,a2,a3,a4,a5)    LOG5(xbt_log_priority_verbose, f,a1,a2,a3,a4,a5)
592 #define VERB6(f,a1,a2,a3,a4,a5,a6) LOG6(xbt_log_priority_verbose, f,a1,a2,a3,a4,a5,a6)
593 #define VERB7(f,a1,a2,a3,a4,a5,a6,a7) LOG7(xbt_log_priority_verbose, f,a1,a2,a3,a4,a5,a6,a7)
594 #define VERB8(f,a1,a2,a3,a4,a5,a6,a7,a8) LOG8(xbt_log_priority_verbose, f,a1,a2,a3,a4,a5,a6,a7,a8)
595 #define VERB9(f,a1,a2,a3,a4,a5,a6,a7,a8,a9) LOG9(xbt_log_priority_verbose, f,a1,a2,a3,a4,a5,a6,a7,a8,a9)
596 /** @ingroup XBT_log
597  *  @hideinitializer
598  *  @brief Log an event at the VERB priority on the default category with these args (VERBn exists for any n<10).
599  */
600 #define VERB10(f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10) LOG10(xbt_log_priority_verbose, f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)
601
602 #define INFO0(f)                   LOG0(xbt_log_priority_info, f)
603 #define INFO1(f,a1)                LOG1(xbt_log_priority_info, f,a1)
604 #define INFO2(f,a1,a2)             LOG2(xbt_log_priority_info, f,a1,a2)
605 #define INFO3(f,a1,a2,a3)          LOG3(xbt_log_priority_info, f,a1,a2,a3)
606 #define INFO4(f,a1,a2,a3,a4)       LOG4(xbt_log_priority_info, f,a1,a2,a3,a4)
607 #define INFO5(f,a1,a2,a3,a4,a5)    LOG5(xbt_log_priority_info, f,a1,a2,a3,a4,a5)
608 #define INFO6(f,a1,a2,a3,a4,a5,a6) LOG6(xbt_log_priority_info, f,a1,a2,a3,a4,a5,a6)
609 #define INFO7(f,a1,a2,a3,a4,a5,a6,a7) LOG7(xbt_log_priority_info, f,a1,a2,a3,a4,a5,a6,a7)
610 #define INFO8(f,a1,a2,a3,a4,a5,a6,a7,a8) LOG8(xbt_log_priority_info, f,a1,a2,a3,a4,a5,a6,a7,a8)
611 #define INFO9(f,a1,a2,a3,a4,a5,a6,a7,a8,a9) LOG9(xbt_log_priority_info, f,a1,a2,a3,a4,a5,a6,a7,a8,a9)
612 /** @ingroup XBT_log
613  *  @hideinitializer
614  *  @brief Log an event at the INFO priority on the default category with these args (INFOn exists for any n<10).
615  */
616 #define INFO10(f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10) LOG10(xbt_log_priority_info, f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)
617
618 #define WARN0(f)                   LOG0(xbt_log_priority_warning, f)
619 #define WARN1(f,a1)                LOG1(xbt_log_priority_warning, f,a1)
620 #define WARN2(f,a1,a2)             LOG2(xbt_log_priority_warning, f,a1,a2)
621 #define WARN3(f,a1,a2,a3)          LOG3(xbt_log_priority_warning, f,a1,a2,a3)
622 #define WARN4(f,a1,a2,a3,a4)       LOG4(xbt_log_priority_warning, f,a1,a2,a3,a4)
623 #define WARN5(f,a1,a2,a3,a4,a5)    LOG5(xbt_log_priority_warning, f,a1,a2,a3,a4,a5)
624 #define WARN6(f,a1,a2,a3,a4,a5,a6) LOG6(xbt_log_priority_warning, f,a1,a2,a3,a4,a5,a6)
625 #define WARN7(f,a1,a2,a3,a4,a5,a6,a7) LOG7(xbt_log_priority_warning, f,a1,a2,a3,a4,a5,a6,a7)
626 #define WARN8(f,a1,a2,a3,a4,a5,a6,a7,a8) LOG8(xbt_log_priority_warning, f,a1,a2,a3,a4,a5,a6,a7,a8)
627 #define WARN9(f,a1,a2,a3,a4,a5,a6,a7,a8,a9) LOG9(xbt_log_priority_warning, f,a1,a2,a3,a4,a5,a6,a7,a8,a9)
628 /** @ingroup XBT_log
629  *  @hideinitializer
630  *  @brief Log an event at the WARN priority on the default category with these args (WARNn exists for any n<10).
631  */
632 #define WARN10(f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10) LOG10(xbt_log_priority_warning, f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)
633
634
635 #define ERROR0(f)                   LOG0(xbt_log_priority_error, f)
636 #define ERROR1(f,a1)                LOG1(xbt_log_priority_error, f,a1)
637 #define ERROR2(f,a1,a2)             LOG2(xbt_log_priority_error, f,a1,a2)
638 #define ERROR3(f,a1,a2,a3)          LOG3(xbt_log_priority_error, f,a1,a2,a3)
639 #define ERROR4(f,a1,a2,a3,a4)       LOG4(xbt_log_priority_error, f,a1,a2,a3,a4)
640 #define ERROR5(f,a1,a2,a3,a4,a5)    LOG5(xbt_log_priority_error, f,a1,a2,a3,a4,a5)
641 #define ERROR6(f,a1,a2,a3,a4,a5,a6) LOG6(xbt_log_priority_error, f,a1,a2,a3,a4,a5,a6)
642 #define ERROR7(f,a1,a2,a3,a4,a5,a6,a7) LOG7(xbt_log_priority_error, f,a1,a2,a3,a4,a5,a6,a7)
643 #define ERROR8(f,a1,a2,a3,a4,a5,a6,a7,a8) LOG8(xbt_log_priority_error, f,a1,a2,a3,a4,a5,a6,a7,a8)
644 #define ERROR9(f,a1,a2,a3,a4,a5,a6,a7,a8,a9) LOG9(xbt_log_priority_error, f,a1,a2,a3,a4,a5,a6,a7,a8,a9)
645 /** @ingroup XBT_log
646  *  @hideinitializer
647  *  @brief Log an event at the ERROR priority on the default category with these args (ERRORn exists for any n<10).
648  */
649 #define ERROR10(f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10) LOG10(xbt_log_priority_error, f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)
650
651 #define CRITICAL0(f)                   LOG0(xbt_log_priority_critical, f)
652 #define CRITICAL1(f,a1)                LOG1(xbt_log_priority_critical, f,a1)
653 #define CRITICAL2(f,a1,a2)             LOG2(xbt_log_priority_critical, f,a1,a2)
654 #define CRITICAL3(f,a1,a2,a3)          LOG3(xbt_log_priority_critical, f,a1,a2,a3)
655 #define CRITICAL4(f,a1,a2,a3,a4)       LOG4(xbt_log_priority_critical, f,a1,a2,a3,a4)
656 #define CRITICAL5(f,a1,a2,a3,a4,a5)    LOG5(xbt_log_priority_critical, f,a1,a2,a3,a4,a5)
657 #define CRITICAL6(f,a1,a2,a3,a4,a5,a6) LOG6(xbt_log_priority_critical, f,a1,a2,a3,a4,a5,a6)
658 #define CRITICAL7(f,a1,a2,a3,a4,a5,a6,a7) LOG7(xbt_log_priority_critical, f,a1,a2,a3,a4,a5,a6,a7)
659 #define CRITICAL8(f,a1,a2,a3,a4,a5,a6,a7,a8) LOG8(xbt_log_priority_critical, f,a1,a2,a3,a4,a5,a6,a7,a8)
660 #define CRITICAL9(f,a1,a2,a3,a4,a5,a6,a7,a8,a9) LOG9(xbt_log_priority_critical, f,a1,a2,a3,a4,a5,a6,a7,a8,a9)
661 /** @ingroup XBT_log
662  *  @hideinitializer
663  *  @brief Log an event at the CRITICAL priority on the default category with these args (CRITICALn exists for any n<10).
664  */
665 #define CRITICAL10(f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10) LOG10(xbt_log_priority_critical, f,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)
666
667 /** @ingroup XBT_log
668  *  @hideinitializer
669  *  @brief Log at TRACE priority that we entered in current function.
670  */
671 #define XBT_IN               LOG1(xbt_log_priority_trace, ">> begin of %s",     _XBT_FUNCTION)
672 #define XBT_IN1(fmt,a)       LOG2(xbt_log_priority_trace, ">> begin of %s" fmt, _XBT_FUNCTION, a)
673 #define XBT_IN2(fmt,a,b)     LOG3(xbt_log_priority_trace, ">> begin of %s" fmt, _XBT_FUNCTION, a,b)
674 #define XBT_IN3(fmt,a,b,c)   LOG4(xbt_log_priority_trace, ">> begin of %s" fmt, _XBT_FUNCTION, a,b,c)
675 #define XBT_IN4(fmt,a,b,c,d) LOG5(xbt_log_priority_trace, ">> begin of %s" fmt, _XBT_FUNCTION, a,b,c,d)
676 /** @ingroup XBT_log
677  *  @hideinitializer
678  *  @brief Log at TRACE priority that we entered in current function, appending a user specified format taking 5 args (XBT_INn exists for all n in [1,6])
679  */
680 #define XBT_IN5(fmt,a,b,c,d,e) LOG6(xbt_log_priority_trace, ">> begin of %s" fmt, _XBT_FUNCTION, a,b,c,d,e)
681 /** @ingroup XBT_log
682  *  @hideinitializer
683  *  @brief Log at TRACE priority that we exited the current function.
684  */
685 #define XBT_OUT              LOG1(xbt_log_priority_trace, "<< end of %s",       _XBT_FUNCTION)
686 /** @ingroup XBT_log
687  *  @hideinitializer
688  *  @brief Log at TRACE priority a message indicating that we reached that point.
689  */
690 #define XBT_HERE             LOG0(xbt_log_priority_trace, "-- was here")
691
692
693 SG_END_DECL()
694
695 #endif /* ! _XBT_LOG_H_ */