Mercurial > pidgin
changeset 23713:92d0151e907b
Relegate XML dumped by msn's SOAP code to MISC from INFO.
If anyone objects wildly to this, feel free to disapprove, but it makes wading
through debug output a pain (when I otherwise want >=INFO-level debugging
output).
author | Will Thompson <will.thompson@collabora.co.uk> |
---|---|
date | Wed, 13 Aug 2008 15:25:51 +0000 |
parents | 91169093449d |
children | b4871d70e916 |
files | libpurple/protocols/msn/soap.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/protocols/msn/soap.c Tue Aug 12 23:35:02 2008 +0000 +++ b/libpurple/protocols/msn/soap.c Wed Aug 13 15:25:51 2008 +0000 @@ -312,10 +312,10 @@ #ifndef MSN_UNSAFE_DEBUG if (conn->current_request->secure) - purple_debug_info("soap", "Received secure request.\n"); + purple_debug_misc("soap", "Received secure request.\n"); else #endif - purple_debug_info("soap", "current %s\n", conn->buf->str); + purple_debug_misc("soap", "current %s\n", conn->buf->str); cursor = conn->buf->str + conn->handled_len; @@ -514,10 +514,10 @@ #ifndef MSN_UNSAFE_DEBUG if (req->secure) - purple_debug_info("soap", "Sending secure request.\n"); + purple_debug_misc("soap", "Sending secure request.\n"); else #endif - purple_debug_info("soap", "%s\n", conn->buf->str); + purple_debug_misc("soap", "%s\n", conn->buf->str); conn->handled_len = 0; conn->current_request = req;