summaryrefslogtreecommitdiffstats
path: root/osmo-gsup-hlr/src/logging.c
diff options
context:
space:
mode:
Diffstat (limited to 'osmo-gsup-hlr/src/logging.c')
-rw-r--r--osmo-gsup-hlr/src/logging.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/osmo-gsup-hlr/src/logging.c b/osmo-gsup-hlr/src/logging.c
deleted file mode 100644
index 0c5d03b..0000000
--- a/osmo-gsup-hlr/src/logging.c
+++ /dev/null
@@ -1,34 +0,0 @@
-#include <osmocom/core/utils.h>
-#include <osmocom/core/logging.h>
-#include "logging.h"
-
-const struct log_info_cat hlr_log_info_cat[] = {
- [DMAIN] = {
- .name = "DMAIN",
- .description = "Main Program",
- .enabled = 1, .loglevel = LOGL_DEBUG,
- },
- [DDB] = {
- .name = "DDB",
- .description = "Database Layer",
- .color = "\033[1;31m",
- .enabled = 1, .loglevel = LOGL_DEBUG,
- },
- [DGSUP] = {
- .name = "DGSUP",
- .description = "GSUP Protocol",
- .color = "\033[1;32m",
- .enabled = 1, .loglevel = LOGL_INFO,
- },
- [DAUC] = {
- .name = "DAUC",
- .description = "Authentication Center",
- .color = "\033[1;33m",
- .enabled = 1, .loglevel = LOGL_DEBUG,
- },
-};
-
-const struct log_info hlr_log_info = {
- .cat = hlr_log_info_cat,
- .num_cat = ARRAY_SIZE(hlr_log_info_cat),
-};