From dc5062b1850089021199abd686a802b59bed7c46 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Fri, 26 Mar 2010 21:28:59 +0800 Subject: move log/debug codebase to libosmocore The logging/debugging code is generic enough to move it into libosmocore while keeping OpenBSC specific definitions in openbsc itself. This commit uses the logging support present in libosmocore-0.1.2, you will have to update your library to this version. --- openbsc/tests/debug/debug_test.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'openbsc/tests/debug/debug_test.c') diff --git a/openbsc/tests/debug/debug_test.c b/openbsc/tests/debug/debug_test.c index 0f0c284ab..695d65c0b 100644 --- a/openbsc/tests/debug/debug_test.c +++ b/openbsc/tests/debug/debug_test.c @@ -24,17 +24,17 @@ int main(int argc, char** argv) { - struct debug_target *stderr_target; + struct log_target *stderr_target; - debug_init(); - stderr_target = debug_target_create_stderr(); - debug_add_target(stderr_target); - debug_set_all_filter(stderr_target, 1); + log_init(&log_info); + stderr_target = log_target_create_stderr(); + log_add_target(stderr_target); + log_set_all_filter(stderr_target, 1); - debug_parse_category_mask(stderr_target, "DRLL"); + log_parse_category_mask(stderr_target, "DRLL"); DEBUGP(DCC, "You should not see this\n"); - debug_parse_category_mask(stderr_target, "DRLL:DCC"); + log_parse_category_mask(stderr_target, "DRLL:DCC"); DEBUGP(DRLL, "You should see this\n"); DEBUGP(DCC, "You should see this\n"); DEBUGP(DMM, "You should not see this\n"); -- cgit v1.2.3