From 4b2c1ef133df64cee9b90978b51859b14d81e43b Mon Sep 17 00:00:00 2001 From: Erwan Croze Date: Wed, 27 Sep 2017 17:18:59 +0200 Subject: [PATCH] Init bctbx logger before create the core in factory --- coreapi/factory.c | 1 + 1 file changed, 1 insertion(+) diff --git a/coreapi/factory.c b/coreapi/factory.c index e316a93ba..5138534a4 100644 --- a/coreapi/factory.c +++ b/coreapi/factory.c @@ -167,6 +167,7 @@ static LinphoneCore *_linphone_factory_create_core ( LpConfig *config = lp_config_new_with_factory(config_path, factory_config_path); LinphoneCore *lc = _linphone_core_new_with_config(cbs, config, user_data, system_context, automatically_start); lp_config_unref(config); + bctbx_uninit_logger(); return lc; }