Logo AND Algorithmique Numérique Distribuée

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