From 69f4def9e5521dde1b8257edefccc6386fcc95fd Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Sat, 12 Nov 2011 18:25:23 +0100 Subject: [PATCH] mshtml: Improved debug traces in nsIChannel::AsyncOpen implementation. --- dlls/mshtml/nsio.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dlls/mshtml/nsio.c b/dlls/mshtml/nsio.c index d266ddff86c..7b6bb787a88 100644 --- a/dlls/mshtml/nsio.c +++ b/dlls/mshtml/nsio.c @@ -949,6 +949,13 @@ static nsresult NSAPI nsChannel_AsyncOpen(nsIHttpChannel *iface, nsIStreamListen if(!ensure_uri(This->uri)) return NS_ERROR_FAILURE; + if(TRACE_ON(mshtml)) { + BSTR uri_str; + IUri_GetDisplayUri(This->uri->uri, &uri_str); + TRACE("opening %s\n", debugstr_w(uri_str)); + SysFreeString(uri_str); + } + if(This->uri->is_doc_uri) { window = get_channel_window(This); if(window) { -- 2.11.4.GIT