Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright notices
[simgrid.git] / teshsuite / xbt / log_usage / log_usage.c
1 /* log_usage - A test of normal usage of the log facilities                 */
2
3 /* Copyright (c) 2004-2007, 2009-2015. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include "xbt.h"
10
11 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(test, top,
12                                 "Logging specific to this test");
13 XBT_LOG_NEW_CATEGORY(top, "Useless test channel");
14
15 static void dolog(const char *settings)
16 {
17   XBT_INFO("Test with the settings '%s'", settings);
18   xbt_log_control_set(settings);
19   XBT_DEBUG("val=%d", 1);
20   XBT_WARN("val=%d", 2);
21   XBT_CDEBUG(top, "val=%d%s", 3, "!");
22   XBT_CRITICAL("false alarm%s%s%s%s%s%s", "", "", "", "", "", "!");
23 }
24
25
26 int main(int argc, char **argv)
27 {
28   xbt_init(&argc, argv);
29
30   dolog("");
31   dolog(" ");
32   dolog(" test.thres:info root.thres:info  ");
33 #ifndef NDEBUG
34   dolog(" test.thres:debug ");
35 #endif
36   dolog(" test.thres:verbose root.thres:error ");
37   dolog(" test.thres:critical ");
38
39   return 0;
40 }