diff -r 43084f103c2a -r 2780a73c71f3 src/irc_net.c --- a/src/irc_net.c Thu Mar 26 21:46:10 2009 +0200 +++ b/src/irc_net.c Thu Mar 26 22:03:20 2009 +0200 @@ -189,19 +189,19 @@ LIST_INIT(&net->users); if (info->raw_sock) { - log_info("connected using raw socket: %p", info->raw_sock); + log_debug("connected using raw socket: %p", info->raw_sock); sock = info->raw_sock; } else if (info->use_ssl) { - log_info("connecting to [%s]:%s using SSL", info->hostname, info->service); + log_debug("connecting to [%s]:%s using SSL", info->hostname, info->service); // XXX: over-simplified blocking connect if (sock_ssl_connect(&sock, info->hostname, info->service, err)) goto error; } else { - log_info("connecting to [%s]:%s", info->hostname, info->service); + log_debug("connecting to [%s]:%s", info->hostname, info->service); // XXX: over-simplified blocking connect if (sock_tcp_connect(&sock, info->hostname, info->service, err)) @@ -218,7 +218,7 @@ goto error; // register - log_info("connected, registering"); + log_debug("connected, registering"); if ((ERROR_CODE(err) = irc_conn_register(net->conn, &info->register_info))) goto error;