X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/72fc4dc0bb3954f33dc1d622b80b904987f02be2..e566c09daba9ad67b31f3992da9172eb04b807a8:/doc/gtut-tour-06-logs.doc diff --git a/doc/gtut-tour-06-logs.doc b/doc/gtut-tour-06-logs.doc index d9269e2f98..347abdb5c6 100644 --- a/doc/gtut-tour-06-logs.doc +++ b/doc/gtut-tour-06-logs.doc @@ -79,15 +79,10 @@ course, it's the only one). \until XBT_LOG Then, we change any call to fprintf to one of the logging macros. There is a -plenty of them, called <priority><nb args>, such as #DEBUG10, -which produces a debuging log event onto the default category. You have to -declare the name of arguments as part of the macro name for compatibility -with old compilers not accepting variable number of arguments. Here is a -partial list of the existing macros: #DEBUG10, #VERB10, #INFO10, #WARN10, -#ERROR10 and #CRITICAL10. For each priority, this is the biggest macro (and -the others are not documented for sake of clarity in the relevant document). -Ie, VERB20 does not exist, but VERB0 does exist. I may add more if someone -wants more, but that should be enough for most purposes. +plenty of them, called <priority><nb args>, such as #XBT_DEBUG, +which produces a debuging log event onto the default category. Here is a +list of the existing macros: #XBT_DEBUG, #XBT_VERB, #XBT_INFO, #XBT_WARN, +#XBT_ERROR and #XBT_CRITICAL. Note also that there is no need to add a '\\n' at the end of your format line, it gets automatically added.