From 4e76efc5e7b31eca1e50564ab6d3c7142d621c07 Mon Sep 17 00:00:00 2001 From: Evangelos Ribeiro Tzaras Date: Wed, 25 Aug 2021 19:48:23 +0200 Subject: [PATCH] sip: provider: No need to print warning when no credentials file found The file could simply not (yet) exist. --- plugins/sip/calls-sip-provider.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/sip/calls-sip-provider.c b/plugins/sip/calls-sip-provider.c index 713cf53..beb470f 100644 --- a/plugins/sip/calls-sip-provider.c +++ b/plugins/sip/calls-sip-provider.c @@ -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);