Harald Welte has submitted this change and it was merged.

Change subject: host/trxcon: use osmo_init_logging2()
......................................................................


host/trxcon: use osmo_init_logging2()

The osmo_init_logging() doesn't allow to specify a talloc context
for libosmocore logging subsystem, so this is why the new version
was introduced. Let's use it.

Change-Id: I06c4a1f7f839f774bc428e89cfac30132bae904d
---
M src/host/trxcon/logging.c
1 file changed, 2 insertions(+), 1 deletion(-)

Approvals:
  Harald Welte: Looks good to me, approved
  Jenkins Builder: Verified



diff --git a/src/host/trxcon/logging.c b/src/host/trxcon/logging.c
index a76b4d9..6a3043b 100644
--- a/src/host/trxcon/logging.c
+++ b/src/host/trxcon/logging.c
@@ -26,6 +26,7 @@
 #include <osmocom/core/utils.h>
 
 #include "logging.h"
+#include "trxcon.h"
 
 static struct log_info_cat trx_log_info_cat[] = {
        [DAPP] = {
@@ -79,7 +80,7 @@
 
 int trx_log_init(const char *category_mask)
 {
-       osmo_init_logging(&trx_log_info);
+       osmo_init_logging2(tall_trx_ctx, &trx_log_info);
 
        if (category_mask)
                log_parse_category_mask(osmo_stderr_target, category_mask);

-- 
To view, visit https://gerrit.osmocom.org/7667
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I06c4a1f7f839f774bc428e89cfac30132bae904d
Gerrit-PatchSet: 2
Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Owner: Vadim Yanitskiy <axilira...@gmail.com>
Gerrit-Reviewer: Harald Welte <lafo...@gnumonks.org>
Gerrit-Reviewer: Jenkins Builder

Reply via email to