Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Make sure that the code still compiles with the freaking paranoid gcc warning options...
[simgrid.git] / src / xbt / log.c
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
11 #include <stdarg.h>
12 #include <ctype.h>
13 #include <stdio.h> /* snprintf */
14 #include <stdlib.h> /* snprintf */
15 #include "gras_config.h" /* to get a working stdarg.h */
16
17 #include "xbt_modinter.h"
18
19 #include "xbt/misc.h"
20 #include "xbt/ex.h"
21 #include "xbt/sysdep.h"
22 #include "xbt/log.h"
23 #include "xbt/dynar.h"
24
25 /** \addtogroup XBT_log
26  *
27  *  This section describes the API to the log functions used 
28  *  everywhere in this project.
29
30 \section XBT_log_toc Table of contents
31  
32  - \ref log_overview
33    - \ref log_cat
34    - \ref log_pri
35    - \ref log_app
36    - \ref log_hist
37  - \ref log_API
38    - \ref log_API_cat
39    - \ref log_API_pri
40    - \ref log_API_subcat
41    - \ref log_API_easy
42    - \ref log_API_example
43  - \ref log_user
44    - \ref log_use_conf
45    - \ref log_use_misc
46  - \ref log_internals
47    - \ref log_in_perf
48    - \ref log_in_app
49      
50 \section log_overview 1. Introduction
51
52 This module is in charge of handling the log messages of every SimGrid
53 program. The main design goal are:
54
55   - <b>configurability</b>: the user can choose <i>at runtime</i> what messages to show and 
56     what to hide, as well as how messages get displayed.
57   - <b>ease of use</b>: both to the programmer (using preprocessor macros black magic)
58     and to the user (with command line options)
59   - <b>performances</b>: logging shouldn't slow down the program when turned off, for example
60   - deal with <b>distributed settings</b>: SimGrid programs are [often] distributed ones, 
61     and the logging mecanism allows to syndicate each and every log source into the same place.
62     At least, its design would allow to, once we write the last missing pieces
63      
64 There is three main concepts in SimGrid's logging mecanism: <i>category</i>,
65 <i>priority</i> and <i>appender</i>. These three concepts work together to
66 enable developers to log messages according to message type and priority, and
67 to control at runtime how these messages are formatted and where they are
68 reported. 
69
70 \subsection log_cat 1.1 Category hierarchy
71
72 The first and foremost advantage of any logging API over plain printf()
73 resides in its ability to disable certain log statements while allowing
74 others to print unhindered. This capability assumes that the logging space,
75 that is, the space of all possible logging statements, is categorized
76 according to some developer-chosen criteria. 
77           
78 This observation led to choosing category as the central concept of the
79 system. In a certain sense, they can be considered as logging topics or
80 channels.
81
82 \subsection log_pri 1.2 Logging priorities
83
84 The user can naturally declare interest into this or that logging category, but
85 he also can specify the desired level of details for each of them. This is
86 controled by the <i>priority</i> concept (which should maybe be renamed to
87 <i>severity</i>). 
88
89 Empirically, the user can specify that he wants to see every debuging message
90 of GRAS while only being interested into the messages at level "error" or
91 higher about the XBT internals.
92
93 \subsection log_app 1.3 Message appenders
94
95 The message appenders are the elements in charge of actually displaying the
96 message to the user. For now, there is only one appender: the one able to print
97 stuff on stderr. But everything is in place internally to write new ones, such
98 as the one able to send the strings to a central server in charge of
99 syndicating the logs of every distributed daemons on a well known location.
100
101 It should also be possible to pass configuration informations to the appenders,
102 specifying for example that the message location (file and line number) is only
103 relevant to debugging information, not to critical error messages.
104
105 One day, for sure ;)
106
107 \subsection log_hist 1.4 History of this module
108
109 Historically, this module is an adaptation of the log4c project, which is dead
110 upstream, and which I was given the permission to fork under the LGPL licence
111 by the log4c's authors. The log4c project itself was loosely based on the
112 Apache project's Log4J, which also inspired Log4CC, Log4py and so on. Our work
113 differs somehow from these projects anyway, because the C programming language
114 is not object oriented.
115
116 \section log_API 2. Programmer interface
117
118 \subsection log_API_cat 2.1 Constructing the category hierarchy
119
120 Every category is declared by providing a name and an optional
121 parent. If no parent is explicitly named, the root category, LOG_ROOT_CAT is
122 the category's parent. 
123       
124 A category is created by a macro call at the top level of a file.  A
125 category can be created with any one of the following macros:
126
127  - \ref XBT_LOG_NEW_CATEGORY(MyCat); Create a new root
128  - \ref XBT_LOG_NEW_SUBCATEGORY(MyCat, ParentCat);
129     Create a new category being child of the category ParentCat
130  - \ref XBT_LOG_NEW_DEFAULT_CATEGORY(MyCat);
131     Like XBT_LOG_NEW_CATEGORY, but the new category is the default one
132       in this file
133  -  \ref XBT_LOG_NEW_DEFAULT_SUBCATEGORY(MyCat, ParentCat);
134     Like XBT_LOG_NEW_SUBCATEGORY, but the new category is the default one
135       in this file
136             
137 The parent cat can be defined in the same file or in another file (in
138 which case you want to use the \ref XBT_LOG_EXTERNAL_CATEGORY macro to make
139 it visible in the current file), but each category may have only one
140 definition.
141       
142 Typically, there will be a Category for each module and sub-module, so you
143 can independently control logging for each module.
144
145 For a list of all existing categories, please refer to the \ref XBT_log_cats
146 section. This file is generated automatically from the SimGrid source code, so
147 it should be complete and accurate.
148
149 \section log_API_pri 2.2 Declaring message priority
150
151 A category may be assigned a threshold priorty. The set of priorites are
152 defined by the \ref e_xbt_log_priority_t enum. All logging request under
153 this priority will be discarded.
154           
155 If a given category is not assigned a threshold priority, then it inherits
156 one from its closest ancestor with an assigned threshold. To ensure that all
157 categories can eventually inherit a threshold, the root category always has
158 an assigned threshold priority.
159
160 Logging requests are made by invoking a logging macro on a category.  All of
161 the macros have a printf-style format string followed by arguments. If you
162 compile with the -Wall option, gcc will warn you for unmatched arguments, ie
163 when you pass a pointer to a string where an integer was specified by the
164 format. This is usualy a good idea.
165
166 Because some C compilers do not support vararg macros, there is a version of
167 the macro for any number of arguments from 0 to 6. The macro name ends with
168 the total number of arguments.
169         
170 Here is an example of the most basic type of macro. This is a logging
171 request with priority <i>warning</i>.
172
173 <code>CLOG5(MyCat, gras_log_priority_warning, "Values are: %d and '%s'", 5,
174 "oops");</code>
175
176 A logging request is said to be enabled if its priority is higher than or
177 equal to the threshold priority of its category. Otherwise, the request is
178 said to be disabled. A category without an assigned priority will inherit
179 one from the hierarchy. 
180       
181 It is possible to use any non-negative integer as a priority. If, as in the
182 example, one of the standard priorites is used, then there is a convenience
183 macro that is typically used instead. For example, the above example is
184 equivalent to the shorter:
185
186 <code>CWARN4(MyCat, "Values are: %d and '%s'", 5, "oops");</code>
187
188 \section log_API_subcat 2.3 Using a default category (the easy interface)
189   
190 If \ref XBT_LOG_NEW_DEFAULT_SUBCATEGORY(MyCat, Parent) or
191 \ref XBT_LOG_NEW_DEFAULT_CATEGORY(MyCat) is used to create the
192 category, then the even shorter form can be used:
193
194 <code>WARN3("Values are: %d and '%s'", 5, "oops");</code>
195
196 Only one default category can be created per file, though multiple
197 non-defaults can be created and used.
198
199 \section log_API_easy 2.4 Putting all together: the easy interface
200
201 First of all, each module should register its own category into the categories
202 tree using \ref XBT_LOG_NEW_DEFAULT_SUBCATEGORY.
203
204 Then, logging should be done with the DEBUG<n>, VERB<n>, INFO<n>, WARN<n>,
205 ERROR<n> or CRITICAL<n> macro families. For each group, there is 6 different
206 macros (like DEBUG0, DEBUG1, DEBUG2, DEBUG3, DEBUG4 and DEBUG5), only differing
207 in the number of arguments passed along the format. This is because we want
208 SimGrid itself to keep compilable on ancient compiler not supporting variable
209 number of arguments to macros. But we should provide a macro simpler to use for
210 the users not interested in SP3 machines (FIXME).
211
212 Under GCC, these macro check there arguments the same way than printf does. So,
213 if you compile with -Wall, the folliwing code will issue a warning:
214 <code>DEBUG2("Found %s (id %f)", some_string, a_double)</code>
215
216 \section log_API_example 2.5 Example of use
217
218 Here is a more complete example:
219
220 \verbatim
221 #include "xbt/log.h"
222
223 / * create a category and a default subcategory * /
224 XBT_LOG_NEW_CATEGORY(VSS);
225 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(SA, VSS);
226
227 int main() {
228        / * Now set the parent's priority.  (the string would typcially be a runtime option) * /
229        xbt_log_control_set("SA.thresh=3");
230
231        / * This request is enabled, because WARNING &gt;= INFO. * /
232        CWARN2(VSS, "Low fuel level.");
233
234        / * This request is disabled, because DEBUG &lt; INFO. * /
235        CDEBUG2(VSS, "Starting search for nearest gas station.");
236
237        / * The default category SA inherits its priority from VSS. Thus,
238           the following request is enabled because INFO &gt;= INFO.  * /
239        INFO1("Located nearest gas station.");
240
241        / * This request is disabled, because DEBUG &lt; INFO. * /
242        DEBUG1("Exiting gas station search"); 
243 }
244 \endverbatim
245
246
247 \section log_user 3. User interface
248
249 \section log_use_conf 3.1 Configuration
250 Configuration is typically done during program initialization by invoking
251 the xbt_log_control_set() method. The control string passed to it typically
252 comes from the command line. Look at the documentation for that function for
253 the format of the control string.
254
255 Any SimGrid program can furthermore be configured at run time by passing a
256 --xbt-log argument on the command line (--gras-log, --msg-log and --surf-log
257 are synonyms provided by aestheticism). You can provide several of those
258 arguments to change the setting of several categories, they will be applied
259 from left to right. So, 
260 \verbatim --xbt-log="root.thres=debug root.thres=critical"\endverbatim 
261 should disable any logging.
262
263 Note that the quotes on above line are mandatory because there is a space in
264 the argument, so we are protecting ourselves from the shell, not from SimGrid.
265 We could also reach the same effect with this:
266 \verbatim --xbt-log=root.thres=debug --xbt-log=root.thres=critical\endverbatim 
267
268 \section log_use_misc 3.2 Misc and Caveats
269
270   - Do not use any of the macros that start with '_'.
271   - Log4J has a 'rolling file appender' which you can select with a run-time
272     option and specify the max file size. This would be a nice default for
273     non-kernel applications.
274   - Careful, category names are global variables.
275
276 \section log_internals 4. Internal considerations
277
278 This module is a mess of macro black magic, and when it goes wrong, SimGrid
279 studently loose its ability to explain its problems. When messing around this
280 module, I often find useful to define XBT_LOG_MAYDAY (which turns it back to
281 good old printf) for the time of finding what's going wrong.
282
283 \section log_in_perf 4.1 Performance
284
285 Except for the first invocation of a given category, a disabled logging request
286 requires an a single comparison of a static variable to a constant.
287
288 There is also compile time constant, \ref XBT_LOG_STATIC_THRESHOLD, which
289 causes all logging requests with a lower priority to be optimized to 0 cost
290 by the compiler. By setting it to gras_log_priority_infinite, all logging
291 requests are statically disabled and cost nothing. Released executables
292 might be compiled with
293 \verbatim-DXBT_LOG_STATIC_THRESHOLD=gras_log_priority_infinite\endverbatim
294
295 Compiling with the \verbatim-DNLOG\endverbatim option disables all logging 
296 requests at compilation time while the \verbatim-DNDEBUG\endverbatim disables 
297 the requests of priority below INFO.
298
299 \todo Logging performance *may* be improved further by improving the message
300 propagation from appender to appender in the category tree.
301
302 \section log_in_app 4.2 Appenders
303
304 Each category has an optional appender. An appender is a pointer to a
305 structure which starts with a pointer to a doAppend() function. DoAppend()
306 prints a message to a log.
307
308 When a category is passed a message by one of the logging macros, the
309 category performs the following actions:
310
311   - if the category has an appender, the message is passed to the
312     appender's doAppend() function,
313   - if 'willLogToParent' is true for the category, the message is passed
314     to the category's parent.
315     
316 By default, only the root category have an appender, and 'willLogToParent'
317 is true for any other category. This situation causes all messages to be
318 logged by the root category's appender.
319
320 The default appender function currently prints to stderr, and no other one
321 exist, even if more would be needed, like the one able to send the logs to a
322 remote dedicated server, or other ones offering different output formats.
323 This is on our TODO list for quite a while now, but your help would be
324 welcome here, too.
325
326
327 */
328
329
330 typedef struct {
331   char *catname;
332   e_xbt_log_priority_t thresh;
333 } s_xbt_log_setting_t,*xbt_log_setting_t;
334
335 static xbt_dynar_t xbt_log_settings=NULL;
336 static void _free_setting(void *s) {
337   xbt_log_setting_t set=(xbt_log_setting_t)s;
338   if (set) {
339     free(set->catname);
340 /*    free(set); FIXME: uncommenting this leads to segfault when more than one chunk is passed as gras-log */
341   }
342 }
343
344 const char *xbt_log_priority_names[8] = {
345   "NONE",
346   "TRACE",
347   "DEBUG",
348   "VERBOSE",
349   "INFO",
350   "WARNING",
351   "ERROR",
352   "CRITICAL"
353 };
354
355 s_xbt_log_category_t _XBT_LOGV(XBT_LOG_ROOT_CAT) = {
356   0, 0, 0,
357   "root", xbt_log_priority_uninitialized, 0,
358   NULL, 0
359 };
360
361 XBT_LOG_NEW_CATEGORY(xbt,"All XBT categories (simgrid toolbox)");
362 XBT_LOG_NEW_CATEGORY(surf,"All SURF categories");
363 XBT_LOG_NEW_CATEGORY(msg,"All MSG categories");
364 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(log,xbt,"Loggings from the logging mechanism itself");
365
366 void xbt_log_init(int *argc,char **argv) {
367   int i,j;
368   char *opt;
369
370   /* Set logs and init log submodule */
371   for (i=1; i<*argc; i++) {
372     if (!strncmp(argv[i],"--gras-log=",strlen("--gras-log=")) ||
373         !strncmp(argv[i],"--surf-log=",strlen("--surf-log=")) ||
374         !strncmp(argv[i],"--msg-log=",strlen("--msg-log=")) ||
375         !strncmp(argv[i],"--xbt-log=",strlen("--xbt-log="))) {
376       opt=strchr(argv[i],'=');
377       opt++;
378       xbt_log_control_set(opt);
379       DEBUG1("Did apply '%s' as log setting",opt);
380       /*remove this from argv*/
381       for (j=i+1; j<*argc; j++) {
382         argv[j-1] = argv[j];
383       } 
384       argv[j-1] = NULL;
385       (*argc)--;
386       i--; /* compensate effect of next loop incrementation */
387     }
388   }
389 }
390
391 void xbt_log_exit(void) {
392   VERB0("Exiting log");
393   xbt_dynar_free(&xbt_log_settings);
394   VERB0("Exited log");
395 }
396
397 static void _apply_control(xbt_log_category_t cat) {
398   int cursor;
399   xbt_log_setting_t setting=NULL;
400   int found = 0;
401
402   if (!xbt_log_settings)
403     return;
404
405   xbt_assert0(cat,"NULL category");
406   xbt_assert(cat->name);
407
408   xbt_dynar_foreach(xbt_log_settings,cursor,setting) {
409     xbt_assert0(setting,"Damnit, NULL cat in the list");
410     xbt_assert1(setting->catname,"NULL setting(=%p)->catname",(void*)setting);
411
412     if (!strcmp(setting->catname,cat->name)) {
413       found = 1;
414
415       xbt_log_threshold_set(cat, setting->thresh);
416       xbt_dynar_cursor_rm(xbt_log_settings,&cursor);
417
418       if (cat->threshold <= xbt_log_priority_debug) {
419         s_xbt_log_event_t _log_ev = 
420           {cat,xbt_log_priority_debug,__FILE__,_XBT_FUNCTION,__LINE__};
421         _xbt_log_event_log(&_log_ev,
422                  "Apply settings for category '%s': set threshold to %s (=%d)",
423                  cat->name, 
424                  xbt_log_priority_names[cat->threshold], cat->threshold);
425       }
426     }
427   }
428   if (!found && cat->threshold <= xbt_log_priority_verbose) {
429     s_xbt_log_event_t _log_ev = 
430       {cat,xbt_log_priority_verbose,__FILE__,_XBT_FUNCTION,__LINE__};
431     _xbt_log_event_log(&_log_ev,
432                         "Category '%s': inherited threshold = %s (=%d)",
433                         cat->name,
434                         xbt_log_priority_names[cat->threshold], cat->threshold);
435   }
436
437 }
438
439 void _xbt_log_event_log( xbt_log_event_t ev, const char *fmt, ...) {
440   xbt_log_category_t cat = ev->cat;
441   va_start(ev->ap, fmt);
442   while(1) {
443     xbt_log_appender_t appender = cat->appender;
444     if (appender != NULL) {
445       appender->do_append(appender, ev, fmt);
446     }
447     if (!cat->willLogToParent)
448       break;
449
450     cat = cat->parent;
451   } 
452   va_end(ev->ap);
453 }
454
455 static void _cat_init(xbt_log_category_t category) {
456   if (category == &_XBT_LOGV(XBT_LOG_ROOT_CAT)) {
457     category->threshold = xbt_log_priority_info;
458     category->appender = xbt_log_default_appender;
459   } else {
460     xbt_log_parent_set(category, category->parent);
461   }
462   _apply_control(category);
463 }
464
465 /*
466  * This gets called the first time a category is referenced and performs the
467  * initialization. 
468  * Also resets threshold to inherited!
469  */
470 int _xbt_log_cat_init(e_xbt_log_priority_t priority,
471                        xbt_log_category_t   category) {
472     
473   _cat_init(category);
474         
475   return priority >= category->threshold;
476 }
477
478 void xbt_log_parent_set(xbt_log_category_t cat,
479                          xbt_log_category_t parent) {
480
481   xbt_assert0(cat,"NULL category to be given a parent");
482   xbt_assert1(parent,"The parent category of %s is NULL",cat->name);
483
484   /* unlink from current parent */
485   if (cat->threshold != xbt_log_priority_uninitialized) {
486     xbt_log_category_t* cpp = &parent->firstChild;
487     while(*cpp != cat && *cpp != NULL) {
488       cpp = &(*cpp)->nextSibling;
489     }
490     xbt_assert(*cpp == cat);
491     *cpp = cat->nextSibling;
492   }
493
494   /* Set new parent */
495   cat->parent = parent;
496   cat->nextSibling = parent->firstChild;
497   parent->firstChild = cat;
498
499   /* Make sure parent is initialized */
500   if (parent->threshold == xbt_log_priority_uninitialized) {
501     _cat_init(parent);
502   }
503     
504   /* Reset priority */
505   cat->threshold = parent->threshold;
506   cat->isThreshInherited = 1;
507 } /* log_setParent */
508
509 static void _set_inherited_thresholds(xbt_log_category_t cat) {
510   xbt_log_category_t child = cat->firstChild;
511   for( ; child != NULL; child = child->nextSibling) {
512     if (child->isThreshInherited) {
513       if (cat != &_XBT_LOGV(log))
514         VERB3("Set category threshold of %s to %s (=%d)",
515               child->name,xbt_log_priority_names[cat->threshold],cat->threshold);
516       child->threshold = cat->threshold;
517       _set_inherited_thresholds(child);
518     }
519   }
520 }
521
522 void xbt_log_threshold_set(xbt_log_category_t   cat,
523                             e_xbt_log_priority_t threshold) {
524   cat->threshold = threshold;
525   cat->isThreshInherited = 0;
526   _set_inherited_thresholds(cat);
527 }
528
529 static void _xbt_log_parse_setting(const char*        control_string,
530                                     xbt_log_setting_t set) {
531   const char *name, *dot, *eq;
532   
533   set->catname=NULL;
534   if (!*control_string) 
535     return;
536   DEBUG1("Parse log setting '%s'",control_string);
537
538   control_string += strspn(control_string, " ");
539   name = control_string;
540   control_string += strcspn(control_string, ".= ");
541   dot = control_string;
542   control_string += strcspn(control_string, "= ");
543   eq = control_string;
544   control_string += strcspn(control_string, " ");
545
546   xbt_assert1(*dot == '.' && *eq == '=',
547                "Invalid control string '%s'",control_string);
548
549   if (!strncmp(dot + 1, "thresh", min(eq - dot - 1,strlen("thresh")))) {
550     int i;
551     char *neweq=xbt_strdup(eq+1);
552     char *p=neweq-1;
553     
554     while (*(++p) != '\0') {
555       if (*p >= 'a' && *p <= 'z') {
556         *p-='a'-'A';
557       }
558     }
559     
560     DEBUG1("New priority name = %s",neweq);
561     for (i=0; i<xbt_log_priority_infinite-1; i++) {
562       if (!strncmp(xbt_log_priority_names[i],neweq,p-eq)) {
563         DEBUG1("This is priority %d",i);
564         break;
565       }
566     }
567     if (i<xbt_log_priority_infinite-1) {
568       set->thresh=i;
569     } else {
570       xbt_assert1(FALSE,"Unknown priority name: %s",eq+1);
571     }
572     free(neweq);
573   } else {
574     char buff[512];
575     snprintf(buff,min(512,eq - dot - 1),"%s",dot+1);
576     xbt_assert1(FALSE,"Unknown setting of the log category: %s",buff);
577   }
578   set->catname=(char*)xbt_malloc(dot - name+1);
579     
580   strncpy(set->catname,name,dot-name);
581   set->catname[dot-name]='\0'; /* Just in case */
582   DEBUG1("This is for cat '%s'", set->catname);
583 }
584
585 static xbt_log_category_t _xbt_log_cat_searchsub(xbt_log_category_t cat,char *name) {
586   xbt_log_category_t child;
587   
588   if (!strcmp(cat->name,name)) {
589     return cat;
590   }
591   for(child=cat->firstChild ; child != NULL; child = child->nextSibling) {
592     return _xbt_log_cat_searchsub(child,name);
593   }
594   THROW0(not_found_error,0,"No such category");
595 }
596
597 static void _cleanup_double_spaces(char *s) {
598   char *p = s;
599   int   e = 0;
600   
601   while (1) {
602     if (!*p)
603       goto end;
604     
605     if (!isspace(*p))
606       break;
607     
608     p++;
609   }
610   
611   e = 1;
612   
613   do {
614     if (e)
615       *s++ = *p;
616     
617     if (!*++p)
618       goto end;
619     
620     if (e ^ !isspace(*p))
621       if ((e = !e))
622         *s++ = ' ';
623   } while (1);
624
625  end:
626   *s = '\0';
627 }
628
629 /**
630  * \ingroup XBT_log  
631  * \param control_string What to parse
632  *
633  * Typically passed a command-line argument. The string has the syntax:
634  *
635  *      ( [category] "." [keyword] "=" value (" ")... )...
636  *
637  * where [category] is one the category names (see \ref XBT_log_cats for a complete list) 
638  * and keyword is one of the following:
639  *
640  *    - thres: category's threshold priority. Possible values:
641  *             TRACE,DEBUG,VERBOSE,INFO,WARNING,ERROR,CRITICAL
642  *             
643  *
644  * \warning
645  * This routine may only be called once and that must be before any other
646  * logging command! Typically, this is done from main().
647  * \todo the previous warning seems a bit old and need double checking
648  */
649 void xbt_log_control_set(const char* control_string) {
650   xbt_log_setting_t set;
651   char *cs;
652   char *p;
653   int done = 0;
654   
655   DEBUG1("Parse log settings '%s'",control_string);
656   if (control_string == NULL)
657     return;
658   if (xbt_log_settings == NULL)
659     xbt_log_settings = xbt_dynar_new(sizeof(xbt_log_setting_t),
660                                        _free_setting);
661
662   set = xbt_new(s_xbt_log_setting_t,1);
663   cs=xbt_strdup(control_string);
664
665   _cleanup_double_spaces(cs);
666
667   while (!done) {
668     xbt_log_category_t cat=NULL;
669     int found=0;
670     xbt_ex_t e;
671     
672     p=strrchr(cs,' ');
673     if (p) {
674       *p='\0';
675       *p++;
676     } else {
677       p=cs;
678       done = 1;
679     }
680     _xbt_log_parse_setting(p,set);
681
682     TRY {
683       cat = _xbt_log_cat_searchsub(&_XBT_LOGV(root),set->catname);
684       found = 1;
685     } CATCH(e) {
686       if (e.category != not_found_error)
687         RETHROW;
688       xbt_ex_free(e);
689       found = 0;
690
691       DEBUG0("Store for further application");
692       DEBUG1("push %p to the settings",(void*)set);
693       xbt_dynar_push(xbt_log_settings,&set);
694       /* malloc in advance the next slot */
695       set = xbt_new(s_xbt_log_setting_t,1);
696     } 
697
698     if (found) {
699       DEBUG0("Apply directly");
700       free(set->catname);
701       xbt_log_threshold_set(cat,set->thresh);
702     }
703   }
704   free(set);
705   free(cs);
706
707
708 void xbt_log_appender_set(xbt_log_category_t cat, xbt_log_appender_t app) {
709   cat->appender = app;
710 }
711