From: mquinson Date: Fri, 10 Dec 2004 06:53:07 +0000 (+0000) Subject: remove gras from the xbt X-Git-Tag: v3.3~4752 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/05e580c9a44d15e83295c78671d8670af0c6c850 remove gras from the xbt git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@598 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/xbt/error.c b/src/xbt/error.c index d39050c6e8..7f221a7ff3 100644 --- a/src/xbt/error.c +++ b/src/xbt/error.c @@ -34,8 +34,8 @@ const char *xbt_error_name(xbt_error_t errcode) { } } -XBT_LOG_EXTERNAL_CATEGORY(gras); -XBT_LOG_DEFAULT_CATEGORY(gras); +XBT_LOG_EXTERNAL_CATEGORY(xbt); +XBT_LOG_DEFAULT_CATEGORY(xbt); void xbt_die (const char *msg) { CRITICAL1("%s",msg); diff --git a/src/xbt/log.c b/src/xbt/log.c index 6d306c05db..e76d823efc 100644 --- a/src/xbt/log.c +++ b/src/xbt/log.c @@ -2,7 +2,7 @@ /* log - a generic logging facility in the spirit of log4j */ -/* Copyright (c) 2004 Martin Quinson. All rights reserved. */ +/* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -49,8 +49,7 @@ s_xbt_log_category_t _XBT_LOGV(XBT_LOG_ROOT_CAT) = { NULL, 0 }; -XBT_LOG_NEW_SUBCATEGORY(gras,XBT_LOG_ROOT_CAT,"All GRAS categories"); -XBT_LOG_NEW_SUBCATEGORY(xbt,XBT_LOG_ROOT_CAT,"All XBT categories (gras toolbox)"); +XBT_LOG_NEW_SUBCATEGORY(xbt,XBT_LOG_ROOT_CAT,"All XBT categories (simgrid toolbox)"); XBT_LOG_NEW_SUBCATEGORY(surf,XBT_LOG_ROOT_CAT,"All SURF categories"); XBT_LOG_NEW_DEFAULT_SUBCATEGORY(log,xbt,"Loggings from the logging mecanism itself");