X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/49ef939d12ab79d1e4b3ce1194ef89c8d6cafe5f..beaeea1d19e6f2b5d06d7463957aec00e2c13a77:/src/xbt/log.c diff --git a/src/xbt/log.c b/src/xbt/log.c index dafba20330..d27bdd61ea 100644 --- a/src/xbt/log.c +++ b/src/xbt/log.c @@ -339,11 +339,12 @@ Here are the existing format directives: - %%p: Priority name (LOG4J compliant) - %%h: Hostname (SimGrid extension) - - %%t: Process name (LOG4J compliant -- thread name in LOG4J) - - %%I: Process PID (SimGrid extension) + - %%P: Process name (SimGrid extension) + - %%t: Thread "name" (LOG4J compliant -- actually the address of the thread in memory) + - %%i: Process PID (SimGrid extension -- this is a 'i' as in 'i'dea) - %%F: file name where the log event was raised (LOG4J compliant) - - %%l: location where the log event was raised (LOG4J compliant, like '%%F:%%L') + - %%l: location where the log event was raised (LOG4J compliant, like '%%F:%%L' -- this is a l as in 'l'etter) - %%L: line number where the log event was raised (LOG4J compliant) - %%M: function name (LOG4J compliant -- called method name here of course). Defined only when using gcc because there is no __FUNCTION__ elsewhere.