Commit 69f4def9 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Improved debug traces in nsIChannel::AsyncOpen implementation.

parent 64b94ebf
...@@ -949,6 +949,13 @@ static nsresult NSAPI nsChannel_AsyncOpen(nsIHttpChannel *iface, nsIStreamListen ...@@ -949,6 +949,13 @@ static nsresult NSAPI nsChannel_AsyncOpen(nsIHttpChannel *iface, nsIStreamListen
if(!ensure_uri(This->uri)) if(!ensure_uri(This->uri))
return NS_ERROR_FAILURE; 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) { if(This->uri->is_doc_uri) {
window = get_channel_window(This); window = get_channel_window(This);
if(window) { if(window) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment