From f15982de722de9125d3794fbecd1e23b0a4b4915 Mon Sep 17 00:00:00 2001 From: selurvedu <11262062+selurvedu@users.noreply.github.com> Date: Mon, 1 Mar 2021 05:16:47 +0000 Subject: Unify connection debug messages --- xmpp-vala/src/core/starttls_xmpp_stream.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xmpp-vala/src/core/starttls_xmpp_stream.vala') diff --git a/xmpp-vala/src/core/starttls_xmpp_stream.vala b/xmpp-vala/src/core/starttls_xmpp_stream.vala index ed5fbdda..2334f664 100644 --- a/xmpp-vala/src/core/starttls_xmpp_stream.vala +++ b/xmpp-vala/src/core/starttls_xmpp_stream.vala @@ -16,7 +16,7 @@ public class Xmpp.StartTlsXmppStream : TlsXmppStream { public override async void connect() throws IOStreamError { try { SocketClient client = new SocketClient(); - debug("Connecting to %s %i (starttls)", host, port); + debug("Connecting to %s:%i (starttls)", host, port); IOStream stream = yield client.connect_to_host_async(host, port); reset_stream(stream); @@ -54,4 +54,4 @@ public class Xmpp.StartTlsXmppStream : TlsXmppStream { throw new IOStreamError.CONNECT("Failed connecting to %s:%i (starttls): %s", host, port, e.message); } } -} \ No newline at end of file +} -- cgit v1.2.3-54-g00ecf