blob: 6800021b886b94178d9fd8e97ae574126abb728c [file] [log] [blame]
Holger Freytherd546e312008-12-27 12:03:07 +00001/* simple test for the debug interface */
2/*
Holger Hans Peter Freytherf9b1f302009-12-23 05:08:12 +01003 * (C) 2008, 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
Holger Freytherd546e312008-12-27 12:03:07 +00004 * All Rights Reserved
5 *
6 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01007 * it under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
Holger Freytherd546e312008-12-27 12:03:07 +00009 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010016 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Holger Freytherd546e312008-12-27 12:03:07 +000018 *
19 */
20
21#include <openbsc/debug.h>
22
23
Holger Hans Peter Freytheradb6e1c2010-09-18 06:44:24 +080024int main(int argc, char **argv)
Holger Freytherd546e312008-12-27 12:03:07 +000025{
Harald Weltedc5062b2010-03-26 21:28:59 +080026 struct log_target *stderr_target;
Holger Freytherd546e312008-12-27 12:03:07 +000027
Harald Weltedc5062b2010-03-26 21:28:59 +080028 log_init(&log_info);
29 stderr_target = log_target_create_stderr();
30 log_add_target(stderr_target);
31 log_set_all_filter(stderr_target, 1);
Holger Hans Peter Freytherf9b1f302009-12-23 05:08:12 +010032
Harald Weltedc5062b2010-03-26 21:28:59 +080033 log_parse_category_mask(stderr_target, "DRLL");
Holger Hans Peter Freytherf9b1f302009-12-23 05:08:12 +010034 DEBUGP(DCC, "You should not see this\n");
35
Harald Weltedc5062b2010-03-26 21:28:59 +080036 log_parse_category_mask(stderr_target, "DRLL:DCC");
Holger Hans Peter Freytherf9b1f302009-12-23 05:08:12 +010037 DEBUGP(DRLL, "You should see this\n");
38 DEBUGP(DCC, "You should see this\n");
39 DEBUGP(DMM, "You should not see this\n");
Holger Hans Peter Freyther500ff972010-04-07 23:00:23 +020040
41 return 0;
Holger Freytherd546e312008-12-27 12:03:07 +000042}