X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/27a462d1cf6871b14fa32d09a96839fd8ff2c1c0..89116b1610923aaa6ee2a8bc7bc2dfe85b697886:/src/xbt/log.c diff --git a/src/xbt/log.c b/src/xbt/log.c index 5df5166343..245f17697a 100644 --- a/src/xbt/log.c +++ b/src/xbt/log.c @@ -287,10 +287,6 @@ manually. A more conventional way is to use the --log command line argument. xbt_init() (called by MSG_init(), gras_init() and friends) checks and deals properly with such arguments. -The following command line arguments exist, but are deprecated and -may disappear in the future: --xbt-log, --gras-log, --msg-log and ---surf-log. - \subsection log_use_conf_thres 3.1.1 Threshold configuration The most common setting is to control which logging event will get @@ -556,7 +552,9 @@ static void xbt_log_connect_categories(void) XBT_LOG_CONNECT(xbt); XBT_LOG_CONNECT(graphxml_parse); XBT_LOG_CONNECT(log); +#if HAVE_MMAP XBT_LOG_CONNECT(mm_diff); +#endif XBT_LOG_CONNECT(module); XBT_LOG_CONNECT(peer); XBT_LOG_CONNECT(replay); @@ -642,11 +640,13 @@ static void xbt_log_connect_categories(void) XBT_LOG_CONNECT(msg); XBT_LOG_CONNECT(msg_action); XBT_LOG_CONNECT(msg_gos); + XBT_LOG_CONNECT(msg_io); XBT_LOG_CONNECT(msg_kernel); XBT_LOG_CONNECT(msg_mailbox); XBT_LOG_CONNECT(msg_process); XBT_LOG_CONNECT(msg_task); - + XBT_LOG_CONNECT(msg_vm); + /* simdag */ XBT_LOG_CONNECT(sd); XBT_LOG_CONNECT(sd_daxparse); @@ -951,7 +951,7 @@ int _xbt_log_cat_init(xbt_log_category_t category, cpp = cpp->nextSibling; } - XBT_DEBUG("Childs of %s: %s; nextSibling: %s", + XBT_DEBUG("Children of %s: %s; nextSibling: %s", category->parent->name, res, (category->parent->nextSibling ? category->parent->nextSibling->name : "none")); @@ -1329,6 +1329,10 @@ static void xbt_log_help(void) "\n" " -> %%d: date (UNIX-like epoch)\n" " -> %%r: application age (time elapsed since the beginning of the application)\n" +"\n" +" Miscellaneous:\n" +" --help-log-categories Display the current hierarchy of log categories.\n" +" --log=no_loc Don't print file names in messages (for tesh tests).\n" "\n" ); }