diff --git a/mozilla/network/module/nsNetService.cpp b/mozilla/network/module/nsNetService.cpp index 1779c2cd73f..7f53e03ef1f 100644 --- a/mozilla/network/module/nsNetService.cpp +++ b/mozilla/network/module/nsNetService.cpp @@ -291,7 +291,9 @@ static void bam_exit_routine(URL_Struct *URL_s, int status, MWContext *window_id if (NULL != URL_s) { nsConnectionInfo *pConn = (nsConnectionInfo *)URL_s->fe_data; +#ifdef NOISY printf("+++ Finished loading %s\n", URL_s->address); +#endif PR_ASSERT(pConn); /* Release the ConnectionInfo object held in the URL_Struct. */ diff --git a/mozilla/network/module/nsStubContext.cpp b/mozilla/network/module/nsStubContext.cpp index 4d0a9f8cb57..2c26a00a88f 100644 --- a/mozilla/network/module/nsStubContext.cpp +++ b/mozilla/network/module/nsStubContext.cpp @@ -461,7 +461,9 @@ NET_StreamBuilder (FO_Present_Types format_out, /* Notify the data consumer that Binding is beginning...*/ /* XXX: check result to terminate connection if necessary */ +#ifdef NOISY printf("+++ Created a stream for %s\n", URL_s->address); +#endif if (pConn->pConsumer) { pConn->pConsumer->OnStartBinding(); }