[balsa/wip/gtk4] Remove some debugging prints
- From: Peter Bloomfield <peterb src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [balsa/wip/gtk4] Remove some debugging prints
- Date: Thu, 7 Jun 2018 15:54:02 +0000 (UTC)
commit 7f0661fd07607043f6335cc6f6d685957418b84e
Author: Peter Bloomfield <PeterBloomfield bellsouth net>
Date: Thu Jun 7 10:19:00 2018 -0400
Remove some debugging prints
libbalsa/imap-server.c | 2 --
libbalsa/server.c | 5 -----
2 files changed, 7 deletions(-)
---
diff --git a/libbalsa/imap-server.c b/libbalsa/imap-server.c
index c2043f85..3447b32f 100644
--- a/libbalsa/imap-server.c
+++ b/libbalsa/imap-server.c
@@ -387,7 +387,6 @@ libbalsa_imap_server_new_from_config(void)
gint conn_limit;
host = libbalsa_conf_get_string("Server");
-g_print("%s host %s\n", G_STRFUNC, host);
if(strrchr(host, ':') == NULL) {
gint port;
port = libbalsa_conf_get_int_with_default("Port", &d);
@@ -395,7 +394,6 @@ g_print("%s host %s\n", G_STRFUNC, host);
gchar *newhost = g_strdup_printf("%s:%d", host, port);
g_free(host);
host = newhost;
-g_print("%s host from newhost %s\n", G_STRFUNC, host);
}
}
user = libbalsa_conf_private_get_string("Username");
diff --git a/libbalsa/server.c b/libbalsa/server.c
index 3bc5a3a0..da7d0f8b 100644
--- a/libbalsa/server.c
+++ b/libbalsa/server.c
@@ -247,11 +247,9 @@ libbalsa_server_real_set_host(LibBalsaServer * server, const gchar * host,
g_return_if_fail(LIBBALSA_IS_SERVER(server));
-g_print("%s host was %s\n", G_STRFUNC, priv->host);
g_free(priv->host);
priv->host = g_strdup(host);
priv->security = security;
-g_print("%s host now %s\n", G_STRFUNC, priv->host);
}
@@ -319,7 +317,6 @@ libbalsa_server_load_config(LibBalsaServer * server)
gboolean d;
priv->host = libbalsa_conf_get_string("Server");
-g_print("%s host %s\n", G_STRFUNC, priv->host);
if(priv->host != NULL && strrchr(priv->host, ':') == NULL) {
gint port;
port = libbalsa_conf_get_int_with_default("Port", &d);
@@ -327,7 +324,6 @@ g_print("%s host %s\n", G_STRFUNC, priv->host);
gchar *newhost = g_strdup_printf("%s:%d", priv->host, port);
g_free(priv->host);
priv->host = newhost;
-g_print("%s host from newhost %s\n", G_STRFUNC, priv->host);
}
}
libbalsa_server_load_security_config(server);
@@ -346,7 +342,6 @@ g_print("%s host from newhost %s\n", G_STRFUNC, priv->host);
#if defined(HAVE_LIBSECRET)
GError *err = NULL;
-g_print("%s host for passwd %s\n", G_STRFUNC, priv->host);
priv->passwd =
secret_password_lookup_sync(LIBBALSA_SERVER_SECRET_SCHEMA,
NULL, &err,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]