From 84ef68ebc1d198d21ab1bf87ab3e9e109c189a4e Mon Sep 17 00:00:00 2001 From: Benjamin Reis Date: Tue, 24 Oct 2017 17:27:14 +0200 Subject: [PATCH] add log --- src/core/core.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/core.cpp b/src/core/core.cpp index 16b8eb60e..d91f75e02 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -46,11 +46,13 @@ Core::Core (LinphoneCore *cCore) : Object(*new CorePrivate) { strcmp(lp_config_get_string(linphone_core_get_config(d->cCore), "server", "db_backend", NULL), "mysql") == 0 ? MainDb::Mysql : MainDb::Sqlite3; + lInfo << "Creating linphone.db at : " << uri; d->mainDb.connect(backend, uri); return; } static string path = getDataPath() + "/linphone.db"; + lInfo << "Creating linphone.db at : " << path; d->mainDb.connect(MainDb::Sqlite3, path); }