lynxis lazus has submitted this change. ( https://gerrit.osmocom.org/c/osmo-msc/+/38110?usp=email )
(
2 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: libvlr: use correct log facility within the VLR ......................................................................
libvlr: use correct log facility within the VLR
Change-Id: Ia3170c3fe48402ab01bf994fd8d3fa8eec699647 --- M src/libvlr/vlr.c 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, approved laforge: Looks good to me, approved
diff --git a/src/libvlr/vlr.c b/src/libvlr/vlr.c index e8ff1b1..e190132 100644 --- a/src/libvlr/vlr.c +++ b/src/libvlr/vlr.c @@ -476,7 +476,7 @@ for (tried = 0; tried < 100; tried++) { rc = osmo_get_rand_id((uint8_t *) &tmsi, sizeof(tmsi)); if (rc < 0) { - LOGP(DDB, LOGL_ERROR, "osmo_get_rand_id() failed: %s\n", strerror(-rc)); + LOGP(DVLR, LOGL_ERROR, "osmo_get_rand_id() failed: %s\n", strerror(-rc)); return rc; }