1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2025-01-06 11:35:32 +00:00

sip: provider: No need to print warning when no credentials file found

The file could simply not (yet) exist.
This commit is contained in:
Evangelos Ribeiro Tzaras 2021-08-25 19:48:23 +02:00
parent 2520a9a555
commit 4e76efc5e7

View file

@ -473,7 +473,7 @@ calls_sip_provider_constructed (GObject *object)
g_autoptr (GKeyFile) key_file = g_key_file_new ();
if (!g_key_file_load_from_file (key_file, self->filename, G_KEY_FILE_NONE, &error)) {
g_warning ("Error loading key file: %s", error->message);
g_debug ("Error loading key file: %s", error->message);
goto out;
}
calls_sip_provider_load_accounts (self, key_file);