Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
3252e9acc5c0f5aa1d4cdc1b1fd776843e31fb32
[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_log_category__, 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 /* In stric ansi C, we are not allowed to initialize a variable with 
97  * a non-constant value. But the whole tree of categories is
98  * connected by setting the address of the parent category as a field
99  * of the child one.
100  * 
101  * Unfortunately, Visual C builder does not target any standard
102  * compliance, and C99 is not an exception to this unfortunate rule.
103  * 
104  * So, we work this around by adding a XBT_LOG_CONNECT() macro,
105  * allowing to connect a child to its parent. It should be used
106  * during the initialization of the code, before the child category
107  * gets used.
108  * 
109  * When compiling with gcc, this is not necessary (XBT_LOG_CONNECT
110  * defines to nothing). When compiling with MSVC, this is needed if
111  * you don't want to see your child category become a child of root
112  * directly.
113  */
114 #if defined(__STRICT_ANSI__) || defined(_MSC_VER)
115 # define _XBT_LOG_PARENT_INITIALIZER(parent) NULL
116 # define XBT_LOG_CONNECT(parent,child)       _XBT_LOGV(child).parent = &_XBT_LOGV(parent)
117 #else 
118 # define _XBT_LOG_PARENT_INITIALIZER(parent) &_XBT_LOGV(parent)
119 # define XBT_LOG_CONNECT(parent,child)       xbt_assert(_XBT_LOGV(child).parent == &_XBT_LOGV(parent))
120 #endif
121
122 /* XBT_LOG_NEW_SUBCATEGORY_helper:
123  * Implementation of XBT_LOG_NEW_SUBCATEGORY, which must declare "extern parent" in addition
124  * to avoid an extra declaration of root when XBT_LOG_NEW_SUBCATEGORY is called by
125  * XBT_LOG_NEW_CATEGORY */
126 #define XBT_LOG_NEW_SUBCATEGORY_helper(catName, parent, desc) \
127     XBT_EXPORT_NO_IMPORT(s_xbt_log_category_t) _XBT_LOGV(catName) = {       \
128         _XBT_LOG_PARENT_INITIALIZER(parent),            \
129         NULL /* firstChild */,                          \
130         NULL /* nextSibling */,                         \
131         #catName,                                       \
132         xbt_log_priority_uninitialized /* threshold */, \
133         1 /* isThreshInherited */,                      \
134         NULL /* appender */,                            \
135         NULL /* layout */,                              \
136         1 /* additivity */                              \
137     }
138 /**
139  * \ingroup XBT_log
140  * \param catName name of new category
141  * \param parent father of the new category in the tree
142  * \param desc string describing the purpose of this category
143  * \hideinitializer
144  *
145  * Defines a new subcategory of the parent. 
146  */
147 #define XBT_LOG_NEW_SUBCATEGORY(catName, parent, desc)    \
148     extern s_xbt_log_category_t _XBT_LOGV(parent); \
149     XBT_LOG_NEW_SUBCATEGORY_helper(catName, parent, desc) \
150
151 /**
152  * \ingroup XBT_log  
153  * \param catName name of new category
154  * \param desc string describing the purpose of this category
155  * \hideinitializer
156  *
157  * Creates a new subcategory of the root category.
158  */
159 # define XBT_LOG_NEW_CATEGORY(catName,desc)  \
160    XBT_LOG_NEW_SUBCATEGORY_helper(catName, XBT_LOG_ROOT_CAT, desc)  
161
162
163 /**
164  * \ingroup XBT_log  
165  * \param cname name of the cat
166  * \hideinitializer
167  *
168  * Indicates which category is the default one.
169  */
170
171 #if defined(XBT_LOG_MAYDAY) /*|| defined (NLOG) * turning logging off */
172 # define XBT_LOG_DEFAULT_CATEGORY(cname)
173 #else
174 # define XBT_LOG_DEFAULT_CATEGORY(cname) \
175          static xbt_log_category_t _XBT_LOGV(default) _XBT_GNUC_UNUSED = &_XBT_LOGV(cname) 
176 #endif
177
178 /**
179  * \ingroup XBT_log  
180  * \param cname name of the cat
181  * \param desc string describing the purpose of this category
182  * \hideinitializer
183  *
184  * Creates a new subcategory of the root category and makes it the default
185  * (used by macros that don't explicitly specify a category).
186  */
187 # define XBT_LOG_NEW_DEFAULT_CATEGORY(cname,desc)        \
188     XBT_LOG_NEW_CATEGORY(cname,desc);                   \
189     XBT_LOG_DEFAULT_CATEGORY(cname)
190
191 /**
192  * \ingroup XBT_log  
193  * \param cname name of the cat
194  * \param parent name of the parent
195  * \param desc string describing the purpose of this category
196  * \hideinitializer
197  *
198  * Creates a new subcategory of the parent category and makes it the default
199  * (used by macros that don't explicitly specify a category).
200  */
201 #define XBT_LOG_NEW_DEFAULT_SUBCATEGORY(cname, parent, desc) \
202     XBT_LOG_NEW_SUBCATEGORY(cname, parent, desc);            \
203     XBT_LOG_DEFAULT_CATEGORY(cname)
204
205 /**
206  * \ingroup XBT_log  
207  * \param cname name of the cat
208  * \hideinitializer
209  *
210  * Indicates that a category you'll use in this file (to get subcategories of it, 
211  * for example) really lives in another file.
212  */
213
214 #define XBT_LOG_EXTERNAL_CATEGORY(cname) \
215    extern s_xbt_log_category_t _XBT_LOGV(cname)
216
217 /**
218  * \ingroup XBT_log
219  * \param cname name of the cat
220  * \hideinitializer
221  *
222  * Indicates that the default category of this file was declared in another file.
223  */
224
225 #define XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(cname) \
226    XBT_LOG_EXTERNAL_CATEGORY(cname);\
227    XBT_LOG_DEFAULT_CATEGORY(cname)
228
229 /* Functions you may call */
230
231 XBT_PUBLIC(void) xbt_log_control_set(const char* cs);
232
233 /* Forward declarations */
234 typedef struct xbt_log_appender_s s_xbt_log_appender_t,*xbt_log_appender_t;
235 typedef struct xbt_log_layout_s   s_xbt_log_layout_t,  *xbt_log_layout_t;
236 typedef struct xbt_log_event_s    s_xbt_log_event_t,   *xbt_log_event_t;
237 typedef struct xbt_log_category_s s_xbt_log_category_t,*xbt_log_category_t;
238
239 /*
240  * Do NOT access any members of this structure directly. FIXME: move to private?
241  */
242 #define XBT_LOG_BUFF_SIZE 2048 /* Size of the static string in which we build the log string */
243 struct xbt_log_category_s {
244   xbt_log_category_t parent;
245   xbt_log_category_t firstChild; 
246   xbt_log_category_t nextSibling;
247   const char *name;
248   int threshold;
249   int isThreshInherited;
250   xbt_log_appender_t appender;
251   xbt_log_layout_t layout;
252   int additivity;
253 };
254
255 struct xbt_log_event_s {
256   xbt_log_category_t cat;
257   e_xbt_log_priority_t priority;
258   const char* fileName;
259   const char* functionName;
260   int lineNum; 
261   va_list ap;
262   va_list ap_copy; /* need a copy to launch dynamic layouts when the static ones overflowed */
263   char buffer[XBT_LOG_BUFF_SIZE];
264 };
265
266 /**
267  * \ingroup XBT_log_implem
268  * \param cat the category (not only its name, but the variable)
269  * \param thresholdPriority the priority
270  *
271  * Programatically alters a category's threshold priority (don't use).
272  */
273 XBT_PUBLIC(void) xbt_log_threshold_set(xbt_log_category_t cat,
274                                        e_xbt_log_priority_t thresholdPriority);
275
276 /**
277  * \ingroup XBT_log_implem  
278  * \param cat the category (not only its name, but the variable)
279  * \param app the appender
280  *
281  * Programatically sets the category's appender.
282  * (the prefered interface is throught xbt_log_control_set())
283  *
284  */
285 XBT_PUBLIC(void) xbt_log_appender_set(xbt_log_category_t cat,
286                                       xbt_log_appender_t app);
287 /**
288  * \ingroup XBT_log_implem  
289  * \param cat the category (not only its name, but the variable)
290  * \param lay the layout
291  *
292  * Programatically sets the category's layout.
293  * (the prefered interface is throught xbt_log_control_set())
294  *
295  */
296 XBT_PUBLIC(void) xbt_log_layout_set(xbt_log_category_t cat, 
297                                     xbt_log_layout_t lay);
298
299 /**
300  * \ingroup XBT_log_implem  
301  * \param cat the category (not only its name, but the variable)
302  * \param additivity whether logging actions must be passed to parent.
303  *
304  * Programatically sets whether the logging actions must be passed to 
305  * the parent category.
306  * (the prefered interface is throught xbt_log_control_set())
307  *
308  */
309 XBT_PUBLIC(void) xbt_log_additivity_set(xbt_log_category_t cat,
310                                         int additivity);
311
312 /** @brief create a new simple layout 
313  *
314  * This layout is not as flexible as the pattern one
315  */
316 XBT_PUBLIC(xbt_log_layout_t) xbt_log_layout_simple_new(char*arg);
317 XBT_PUBLIC(xbt_log_layout_t) xbt_log_layout_format_new(char*arg);
318 XBT_PUBLIC(xbt_log_appender_t) xbt_log_appender_file_new(char*arg);
319
320
321 /* ********************************** */
322 /* Functions that you shouldn't call  */
323 /* ********************************** */
324 XBT_PUBLIC(void) _xbt_log_event_log(xbt_log_event_t ev,
325                                 const char *fmt,
326                                 ...) _XBT_GNUC_PRINTF(2,3);
327
328 XBT_PUBLIC(int) _xbt_log_cat_init(xbt_log_category_t   category,
329                                   e_xbt_log_priority_t priority);
330
331
332 XBT_PUBLIC_DATA(s_xbt_log_category_t) _XBT_LOGV(XBT_LOG_ROOT_CAT);
333
334
335 extern xbt_log_appender_t xbt_log_default_appender;
336 extern xbt_log_layout_t xbt_log_default_layout;
337
338 /* ********************** */
339 /* Public functions again */
340 /* ********************** */
341
342 /**
343  * \ingroup XBT_log 
344  * \param catName name of the category
345  * \param priority minimal priority to be enabled to return true (must be #e_xbt_log_priority_t)
346  * \hideinitializer
347  *
348  * Returns true if the given priority is enabled for the category.
349  * If you have expensive expressions that are computed outside of the log
350  * command and used only within it, you should make its evaluation conditional
351  * using this macro.
352  */
353 #define XBT_LOG_ISENABLED(catName, priority) \
354             _XBT_LOG_ISENABLEDV(_XBT_LOGV(catName), priority)
355
356 /*
357  * Helper function that implements XBT_LOG_ISENABLED.
358  *
359  * NOTES
360  * First part is a compile-time constant.
361  * Call to _log_initCat only happens once.
362  */
363 #define _XBT_LOG_ISENABLEDV(catv, priority)                  \
364        (priority >= XBT_LOG_STATIC_THRESHOLD                 \
365         && priority >= catv.threshold                         \
366         && (catv.threshold != xbt_log_priority_uninitialized \
367             || _xbt_log_cat_init(&catv, priority)) )
368
369 /*
370  * Internal Macros
371  * Some kludge macros to ease maintenance. See how they're used below.
372  *
373  * IMPLEMENTATION NOTE: To reduce the parameter passing overhead of an enabled
374  * message, the many parameters passed to the logging function are packed in a
375  * structure. Since these values will be usually be passed to at least 3
376  * functions, this is a win.
377  * It also allows adding new values (such as a timestamp) without breaking
378  * code. 
379  * Setting the LogEvent's valist member is done inside _log_logEvent.
380  */
381
382 #define _XBT_LOG_PRE(catv, priority) do {                        \
383      if (_XBT_LOG_ISENABLEDV(catv, priority)) {                  \
384          s_xbt_log_event_t _log_ev =                             \
385              {NULL,priority,__FILE__,_XBT_FUNCTION,__LINE__}; \
386                 _log_ev.cat = &(catv);                           \
387               _xbt_log_event_log(&_log_ev                        \
388               
389
390 #define _XBT_LOG_POST                          \
391                         );                      \
392      } } while(0)
393
394
395 /* Logging Macros */
396
397 #ifdef XBT_LOG_MAYDAY
398 # define CLOG0(c, p, f)                   fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__)
399 # define CLOG1(c, p, f,a1)                fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1)               
400 # define CLOG2(c, p, f,a1,a2)             fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2)            
401 # define CLOG3(c, p, f,a1,a2,a3)          fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2,a3)         
402 # define CLOG4(c, p, f,a1,a2,a3,a4)       fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2,a3,a4)      
403 # define CLOG5(c, p, f,a1,a2,a3,a4,a5)    fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2,a3,a4,a5)   
404 # 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)
405 # 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)
406 # 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)
407 # 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)
408 # 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)
409 #else
410 # define CLOG0(c, p, f)                   _XBT_LOG_PRE(_XBT_LOGV(c),p) ,f _XBT_LOG_POST            
411 # define CLOG1(c, p, f,a1)                _XBT_LOG_PRE(_XBT_LOGV(c),p) ,f,a1 _XBT_LOG_POST                 
412 # define CLOG2(c, p, f,a1,a2)             _XBT_LOG_PRE(_XBT_LOGV(c),p) ,f,a1,a2 _XBT_LOG_POST
413 # define CLOG3(c, p, f,a1,a2,a3)          _XBT_LOG_PRE(_XBT_LOGV(c),p) ,f,a1,a2,a3 _XBT_LOG_POST
414 # define CLOG4(c, p, f,a1,a2,a3,a4)       _XBT_LOG_PRE(_XBT_LOGV(c),p) ,f,a1,a2,a3,a4 _XBT_LOG_POST
415 # 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
416 # 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
417 # 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
418 # 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
419 # 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
420 # 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
421 #endif
422 #define CDEBUG0(c, f)                   CLOG0(c, xbt_log_priority_debug, f)
423 #define CDEBUG1(c, f,a1)                CLOG1(c, xbt_log_priority_debug, f,a1)
424 #define CDEBUG2(c, f,a1,a2)             CLOG2(c, xbt_log_priority_debug, f,a1,a2)
425 #define CDEBUG3(c, f,a1,a2,a3)          CLOG3(c, xbt_log_priority_debug, f,a1,a2,a3)
426 #define CDEBUG4(c, f,a1,a2,a3,a4)       CLOG4(c, xbt_log_priority_debug, f,a1,a2,a3,a4)
427 #define CDEBUG5(c, f,a1,a2,a3,a4,a5)    CLOG5(c, xbt_log_priority_debug, f,a1,a2,a3,a4,a5)
428 #define CDEBUG6(c, f,a1,a2,a3,a4,a5,a6) CLOG6(c, xbt_log_priority_debug, f,a1,a2,a3,a4,a5,a6)
429 #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)
430 #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)
431 #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)
432 /** @ingroup XBT_log
433  *  @hideinitializer
434  * \param c the category on which to log
435  * \param f the format string
436  * \param a1 first argument of the format
437  * \param a2 second argument of the format
438  * \param a3 third argument of the format
439  * \param a4 fourth argument of the format
440  * \param a5 fifth argument of the format
441  * \param a6 sixth argument of the format
442  * \param a7 seventh argument of the format
443  * \param a8 eighth argument of the format
444  * \param a9 ninth argument of the format
445  * \param a10 tenth argument of the format
446  *  @brief Log an event at the DEBUG priority on the specified category with these args (CDEBUGn exists for any n<10).
447  */
448 #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)
449
450 #define CVERB0(c, f)                   CLOG0(c, xbt_log_priority_verbose, f)
451 #define CVERB1(c, f,a1)                CLOG1(c, xbt_log_priority_verbose, f,a1)
452 #define CVERB2(c, f,a1,a2)             CLOG2(c, xbt_log_priority_verbose, f,a1,a2)
453 #define CVERB3(c, f,a1,a2,a3)          CLOG3(c, xbt_log_priority_verbose, f,a1,a2,a3)
454 #define CVERB4(c, f,a1,a2,a3,a4)       CLOG4(c, xbt_log_priority_verbose, f,a1,a2,a3,a4)
455 #define CVERB5(c, f,a1,a2,a3,a4,a5)    CLOG5(c, xbt_log_priority_verbose, f,a1,a2,a3,a4,a5)
456 #define CVERB6(c, f,a1,a2,a3,a4,a5,a6)    CLOG6(c, xbt_log_priority_verbose, f,a1,a2,a3,a4,a5,a6)
457 #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)
458 #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)
459 #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)
460 /** @ingroup XBT_log
461  *  @hideinitializer
462  *  @brief Log an event at the VERB priority on the specified category with these args (CVERBn exists for any n<10).
463  */
464 #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)
465
466 #define CINFO0(c, f)                   CLOG0(c, xbt_log_priority_info, f)
467 #define CINFO1(c, f,a1)                CLOG1(c, xbt_log_priority_info, f,a1)
468 #define CINFO2(c, f,a1,a2)             CLOG2(c, xbt_log_priority_info, f,a1,a2)
469 #define CINFO3(c, f,a1,a2,a3)          CLOG3(c, xbt_log_priority_info, f,a1,a2,a3)
470 #define CINFO4(c, f,a1,a2,a3,a4)       CLOG4(c, xbt_log_priority_info, f,a1,a2,a3,a4)
471 #define CINFO5(c, f,a1,a2,a3,a4,a5)    CLOG5(c, xbt_log_priority_info, f,a1,a2,a3,a4,a5)
472 #define CINFO6(c, f,a1,a2,a3,a4,a5,a6) CLOG6(c, xbt_log_priority_info, f,a1,a2,a3,a4,a5,a6)
473 #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)
474 #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)
475 #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)
476 /** @ingroup XBT_log
477  *  @hideinitializer
478  *  @brief Log an event at the INFO priority on the specified category with these args (CINFOn exists for any n<10).
479  */
480 #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)
481
482 #define CWARN0(c, f)                   CLOG0(c, xbt_log_priority_warning, f)
483 #define CWARN1(c, f,a1)                CLOG1(c, xbt_log_priority_warning, f,a1)
484 #define CWARN2(c, f,a1,a2)             CLOG2(c, xbt_log_priority_warning, f,a1,a2)
485 #define CWARN3(c, f,a1,a2,a3)          CLOG3(c, xbt_log_priority_warning, f,a1,a2,a3)
486 #define CWARN4(c, f,a1,a2,a3,a4)       CLOG4(c, xbt_log_priority_warning, f,a1,a2,a3,a4)
487 #define CWARN5(c, f,a1,a2,a3,a4,a5)    CLOG5(c, xbt_log_priority_warning, f,a1,a2,a3,a4,a5)
488 #define CWARN6(c, f,a1,a2,a3,a4,a5,a6) CLOG6(c, xbt_log_priority_warning, f,a1,a2,a3,a4,a5,a6)
489 #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)
490 #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)
491 #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)
492 /** @ingroup XBT_log
493  *  @hideinitializer
494  *  @brief Log an event at the WARN priority on the specified category with these args (CWARNn exists for any n<10).
495  */
496 #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)
497
498 #define CERROR0(c, f)                   CLOG0(c, xbt_log_priority_error, f)
499 #define CERROR1(c, f,a1)                CLOG1(c, xbt_log_priority_error, f,a1)
500 #define CERROR2(c, f,a1,a2)             CLOG2(c, xbt_log_priority_error, f,a1,a2)
501 #define CERROR3(c, f,a1,a2,a3)          CLOG3(c, xbt_log_priority_error, f,a1,a2,a3)
502 #define CERROR4(c, f,a1,a2,a3,a4)       CLOG4(c, xbt_log_priority_error, f,a1,a2,a3,a4)
503 #define CERROR5(c, f,a1,a2,a3,a4,a5)    CLOG5(c, xbt_log_priority_error, f,a1,a2,a3,a4,a5)
504 #define CERROR6(c, f,a1,a2,a3,a4,a5,a6) CLOG6(c, xbt_log_priority_error, f,a1,a2,a3,a4,a5,a6)
505 #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)
506 #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)
507 #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)
508 /** @ingroup XBT_log
509  *  @hideinitializer
510  *  @brief Log an event at the ERROR priority on the specified category with these args (CERRORn exists for any n<10).
511  */
512 #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)
513
514 #define CCRITICAL0(c, f)                   CLOG0(c, xbt_log_priority_critical, f)
515 #define CCRITICAL1(c, f,a1)                CLOG1(c, xbt_log_priority_critical, f,a1)
516 #define CCRITICAL2(c, f,a1,a2)             CLOG2(c, xbt_log_priority_critical, f,a1,a2)
517 #define CCRITICAL3(c, f,a1,a2,a3)          CLOG3(c, xbt_log_priority_critical, f,a1,a2,a3)
518 #define CCRITICAL4(c, f,a1,a2,a3,a4)       CLOG4(c, xbt_log_priority_critical, f,a1,a2,a3,a4)
519 #define CCRITICAL5(c, f,a1,a2,a3,a4,a5)    CLOG5(c, xbt_log_priority_critical, f,a1,a2,a3,a4,a5)
520 #define CCRITICAL6(c, f,a1,a2,a3,a4,a5,a6)    CLOG6(c, xbt_log_priority_critical, f,a1,a2,a3,a4,a5,a6)
521 #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)
522 #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)
523 #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)
524 /** @ingroup XBT_log
525  *  @hideinitializer
526  *  @brief Log an event at the CRITICAL priority on the specified category with these args (CCRITICALn exists for any n<10).
527  */
528 #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)
529
530 #ifdef XBT_LOG_MAYDAY
531 # define LOG0(p, f)                   fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__)
532 # define LOG1(p, f,a1)                fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1)               
533 # define LOG2(p, f,a1,a2)             fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2)            
534 # define LOG3(p, f,a1,a2,a3)          fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2,a3)         
535 # define LOG4(p, f,a1,a2,a3,a4)       fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2,a3,a4)      
536 # define LOG5(p, f,a1,a2,a3,a4,a5)    fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2,a3,a4,a5)   
537 # define LOG6(p, f,a1,a2,a3,a4,a5,a6) fprintf(stderr,"%s:%d:" f "\n",__FILE__,__LINE__,a1,a2,a3,a4,a5,a6)
538 # 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)
539 # 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)
540 # 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)
541 # 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)
542 #else
543 # define LOG0(p, f)                   _XBT_LOG_PRE((*_XBT_LOGV(default)),p) ,f _XBT_LOG_POST
544 # define LOG1(p, f,a1)                _XBT_LOG_PRE((*_XBT_LOGV(default)),p) ,f,a1 _XBT_LOG_POST
545 # define LOG2(p, f,a1,a2)             _XBT_LOG_PRE((*_XBT_LOGV(default)),p) ,f,a1,a2 _XBT_LOG_POST
546 # define LOG3(p, f,a1,a2,a3)          _XBT_LOG_PRE((*_XBT_LOGV(default)),p) ,f,a1,a2,a3 _XBT_LOG_POST
547 # define LOG4(p, f,a1,a2,a3,a4)       _XBT_LOG_PRE((*_XBT_LOGV(default)),p) ,f,a1,a2,a3,a4 _XBT_LOG_POST
548 # 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
549 # 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
550 # 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
551 # 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
552 # 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
553 # 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
554 #endif
555
556 #define DEBUG0(f)                   LOG0(xbt_log_priority_debug, f)
557 #define DEBUG1(f,a1)                LOG1(xbt_log_priority_debug, f,a1)
558 #define DEBUG2(f,a1,a2)             LOG2(xbt_log_priority_debug, f,a1,a2)
559 #define DEBUG3(f,a1,a2,a3)          LOG3(xbt_log_priority_debug, f,a1,a2,a3)
560 #define DEBUG4(f,a1,a2,a3,a4)       LOG4(xbt_log_priority_debug, f,a1,a2,a3,a4)
561 #define DEBUG5(f,a1,a2,a3,a4,a5)    LOG5(xbt_log_priority_debug, f,a1,a2,a3,a4,a5)
562 #define DEBUG6(f,a1,a2,a3,a4,a5,a6) LOG6(xbt_log_priority_debug, f,a1,a2,a3,a4,a5,a6)
563 #define DEBUG7(f,a1,a2,a3,a4,a5,a6,a7) LOG7(xbt_log_priority_debug, f,a1,a2,a3,a4,a5,a6,a7)
564 #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)
565 #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)
566 /** @ingroup XBT_log
567  *  @hideinitializer
568  * \param f the format string
569  * \param a1 first argument of the format
570  * \param a2 second argument of the format
571  * \param a3 third argument of the format
572  * \param a4 fourth argument of the format
573  * \param a5 fifth argument of the format
574  * \param a6 sixth argument of the format
575  * \param a7 seventh argument of the format
576  * \param a8 eighth argument of the format
577  * \param a9 ninth argument of the format
578  * \param a10 tenth argument of the format
579  *  @brief Log an event at the DEBUG priority on the default category with these args (DEBUGn exists for any n<10)
580  */
581 #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)
582
583 #define VERB0(f)                   LOG0(xbt_log_priority_verbose, f)
584 #define VERB1(f,a1)                LOG1(xbt_log_priority_verbose, f,a1)
585 #define VERB2(f,a1,a2)             LOG2(xbt_log_priority_verbose, f,a1,a2)
586 #define VERB3(f,a1,a2,a3)          LOG3(xbt_log_priority_verbose, f,a1,a2,a3)
587 #define VERB4(f,a1,a2,a3,a4)       LOG4(xbt_log_priority_verbose, f,a1,a2,a3,a4)
588 #define VERB5(f,a1,a2,a3,a4,a5)    LOG5(xbt_log_priority_verbose, f,a1,a2,a3,a4,a5)
589 #define VERB6(f,a1,a2,a3,a4,a5,a6) LOG6(xbt_log_priority_verbose, f,a1,a2,a3,a4,a5,a6)
590 #define VERB7(f,a1,a2,a3,a4,a5,a6,a7) LOG7(xbt_log_priority_verbose, f,a1,a2,a3,a4,a5,a6,a7)
591 #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)
592 #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)
593 /** @ingroup XBT_log
594  *  @hideinitializer
595  *  @brief Log an event at the VERB priority on the default category with these args (VERBn exists for any n<10).
596  */
597 #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)
598
599 #define INFO0(f)                   LOG0(xbt_log_priority_info, f)
600 #define INFO1(f,a1)                LOG1(xbt_log_priority_info, f,a1)
601 #define INFO2(f,a1,a2)             LOG2(xbt_log_priority_info, f,a1,a2)
602 #define INFO3(f,a1,a2,a3)          LOG3(xbt_log_priority_info, f,a1,a2,a3)
603 #define INFO4(f,a1,a2,a3,a4)       LOG4(xbt_log_priority_info, f,a1,a2,a3,a4)
604 #define INFO5(f,a1,a2,a3,a4,a5)    LOG5(xbt_log_priority_info, f,a1,a2,a3,a4,a5)
605 #define INFO6(f,a1,a2,a3,a4,a5,a6) LOG6(xbt_log_priority_info, f,a1,a2,a3,a4,a5,a6)
606 #define INFO7(f,a1,a2,a3,a4,a5,a6,a7) LOG7(xbt_log_priority_info, f,a1,a2,a3,a4,a5,a6,a7)
607 #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)
608 #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)
609 /** @ingroup XBT_log
610  *  @hideinitializer
611  *  @brief Log an event at the INFO priority on the default category with these args (INFOn exists for any n<10).
612  */
613 #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)
614
615 #define WARN0(f)                   LOG0(xbt_log_priority_warning, f)
616 #define WARN1(f,a1)                LOG1(xbt_log_priority_warning, f,a1)
617 #define WARN2(f,a1,a2)             LOG2(xbt_log_priority_warning, f,a1,a2)
618 #define WARN3(f,a1,a2,a3)          LOG3(xbt_log_priority_warning, f,a1,a2,a3)
619 #define WARN4(f,a1,a2,a3,a4)       LOG4(xbt_log_priority_warning, f,a1,a2,a3,a4)
620 #define WARN5(f,a1,a2,a3,a4,a5)    LOG5(xbt_log_priority_warning, f,a1,a2,a3,a4,a5)
621 #define WARN6(f,a1,a2,a3,a4,a5,a6) LOG6(xbt_log_priority_warning, f,a1,a2,a3,a4,a5,a6)
622 #define WARN7(f,a1,a2,a3,a4,a5,a6,a7) LOG7(xbt_log_priority_warning, f,a1,a2,a3,a4,a5,a6,a7)
623 #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)
624 #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)
625 /** @ingroup XBT_log
626  *  @hideinitializer
627  *  @brief Log an event at the WARN priority on the default category with these args (WARNn exists for any n<10).
628  */
629 #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)
630
631
632 #define ERROR0(f)                   LOG0(xbt_log_priority_error, f)
633 #define ERROR1(f,a1)                LOG1(xbt_log_priority_error, f,a1)
634 #define ERROR2(f,a1,a2)             LOG2(xbt_log_priority_error, f,a1,a2)
635 #define ERROR3(f,a1,a2,a3)          LOG3(xbt_log_priority_error, f,a1,a2,a3)
636 #define ERROR4(f,a1,a2,a3,a4)       LOG4(xbt_log_priority_error, f,a1,a2,a3,a4)
637 #define ERROR5(f,a1,a2,a3,a4,a5)    LOG5(xbt_log_priority_error, f,a1,a2,a3,a4,a5)
638 #define ERROR6(f,a1,a2,a3,a4,a5,a6) LOG6(xbt_log_priority_error, f,a1,a2,a3,a4,a5,a6)
639 #define ERROR7(f,a1,a2,a3,a4,a5,a6,a7) LOG7(xbt_log_priority_error, f,a1,a2,a3,a4,a5,a6,a7)
640 #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)
641 #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)
642 /** @ingroup XBT_log
643  *  @hideinitializer
644  *  @brief Log an event at the ERROR priority on the default category with these args (ERRORn exists for any n<10).
645  */
646 #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)
647
648 #define CRITICAL0(f)                   LOG0(xbt_log_priority_critical, f)
649 #define CRITICAL1(f,a1)                LOG1(xbt_log_priority_critical, f,a1)
650 #define CRITICAL2(f,a1,a2)             LOG2(xbt_log_priority_critical, f,a1,a2)
651 #define CRITICAL3(f,a1,a2,a3)          LOG3(xbt_log_priority_critical, f,a1,a2,a3)
652 #define CRITICAL4(f,a1,a2,a3,a4)       LOG4(xbt_log_priority_critical, f,a1,a2,a3,a4)
653 #define CRITICAL5(f,a1,a2,a3,a4,a5)    LOG5(xbt_log_priority_critical, f,a1,a2,a3,a4,a5)
654 #define CRITICAL6(f,a1,a2,a3,a4,a5,a6) LOG6(xbt_log_priority_critical, f,a1,a2,a3,a4,a5,a6)
655 #define CRITICAL7(f,a1,a2,a3,a4,a5,a6,a7) LOG7(xbt_log_priority_critical, f,a1,a2,a3,a4,a5,a6,a7)
656 #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)
657 #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)
658 /** @ingroup XBT_log
659  *  @hideinitializer
660  *  @brief Log an event at the CRITICAL priority on the default category with these args (CRITICALn exists for any n<10).
661  */
662 #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)
663
664 /** @ingroup XBT_log
665  *  @hideinitializer
666  *  @brief Log at TRACE priority that we entered in current function.
667  */
668 #define XBT_IN               LOG1(xbt_log_priority_trace, ">> begin of %s",     _XBT_FUNCTION)
669 #define XBT_IN1(fmt,a)       LOG2(xbt_log_priority_trace, ">> begin of %s" fmt, _XBT_FUNCTION, a)
670 #define XBT_IN2(fmt,a,b)     LOG3(xbt_log_priority_trace, ">> begin of %s" fmt, _XBT_FUNCTION, a,b)
671 #define XBT_IN3(fmt,a,b,c)   LOG4(xbt_log_priority_trace, ">> begin of %s" fmt, _XBT_FUNCTION, a,b,c)
672 #define XBT_IN4(fmt,a,b,c,d) LOG5(xbt_log_priority_trace, ">> begin of %s" fmt, _XBT_FUNCTION, a,b,c,d)
673 /** @ingroup XBT_log
674  *  @hideinitializer
675  *  @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])
676  */
677 #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)
678 /** @ingroup XBT_log
679  *  @hideinitializer
680  *  @brief Log at TRACE priority that we exited the current function.
681  */
682 #define XBT_OUT              LOG1(xbt_log_priority_trace, "<< end of %s",       _XBT_FUNCTION)
683 /** @ingroup XBT_log
684  *  @hideinitializer
685  *  @brief Log at TRACE priority a message indicating that we reached that point.
686  */
687 #define XBT_HERE             LOG0(xbt_log_priority_trace, "-- was here")
688
689
690 SG_END_DECL()
691
692 #endif /* ! _XBT_LOG_H_ */