Module: kamailio
Branch: master
Commit: b467ce544afa709c28e39d8734b2e9ba6a43b79c
URL:
https://github.com/kamailio/kamailio/commit/b467ce544afa709c28e39d8734b2e9b…
Author: Henning Westerholt <hw(a)gilawa.com>
Committer: Henning Westerholt <hw(a)gilawa.com>
Date: 2022-04-13T05:59:15Z
geoip2: also log database path
---
Modified: src/modules/geoip2/geoip2_mod.c
---
Diff:
https://github.com/kamailio/kamailio/commit/b467ce544afa709c28e39d8734b2e9b…
Patch:
https://github.com/kamailio/kamailio/commit/b467ce544afa709c28e39d8734b2e9b…
---
diff --git a/src/modules/geoip2/geoip2_mod.c b/src/modules/geoip2/geoip2_mod.c
index 17d910399b..f24a853c3a 100644
--- a/src/modules/geoip2/geoip2_mod.c
+++ b/src/modules/geoip2/geoip2_mod.c
@@ -80,7 +80,7 @@ struct module_exports exports = {
*/
static int mod_init(void)
{
- LM_INFO("using GeoIP library version %s\n", MMDB_lib_version());
+ LM_INFO("using GeoIP database path %s, library version %s\n", geoip2_path,
MMDB_lib_version());
if(geoip2_path==NULL || strlen(geoip2_path)==0)
{