This commit is contained in:
stephend%netscape.com 2001-12-31 00:23:35 +00:00
Родитель 7d36f3b5a5
Коммит 89327ba657
2 изменённых файлов: 7 добавлений и 6 удалений

Просмотреть файл

@ -1947,13 +1947,13 @@ NS_IMETHODIMP QuotingOutputStreamListener::OnStopRequest(nsIRequest *request, ns
#ifdef MSGCOMP_TRACE_PERFORMANCE
nsCOMPtr<nsIMsgComposeService> composeService (do_GetService(NS_MSGCOMPOSESERVICE_CONTRACTID));
composeService->TimeStamp("done with mime. Lets update some UI element", PR_FALSE);
composeService->TimeStamp("Done with MIME. Now we're updating the UI elements", PR_FALSE);
#endif
compose->NotifyStateListeners(eComposeFieldsReady, NS_OK);
#ifdef MSGCOMP_TRACE_PERFORMANCE
composeService->TimeStamp("addressing widget, windows title and focus are now set, time to insert the body", PR_FALSE);
composeService->TimeStamp("Addressing widget, window title and focus are now set, time to insert the body", PR_FALSE);
#endif
if (! mHeadersOnly)
@ -2710,7 +2710,7 @@ nsMsgDocumentStateListener::NotifyDocumentCreated(void)
#ifdef MSGCOMP_TRACE_PERFORMANCE
nsCOMPtr<nsIMsgComposeService> composeService (do_GetService(NS_MSGCOMPOSESERVICE_CONTRACTID));
composeService->TimeStamp("Editor is done loading about::blank. Now let mime do its job", PR_FALSE);
composeService->TimeStamp("Editor is done loading about:blank. This is New Compose window time. Time for MIME.", PR_FALSE);
#endif
nsCOMPtr<nsIMsgCompose>compose = do_QueryReferent(mWeakComposeObj);

Просмотреть файл

@ -21,7 +21,7 @@
*
* Contributor(s):
* Jean-Francois Ducarroz <ducarroz@netscape.com>
* Pierre Phaneuf <pp@ludusdesign.com>
* Pierre Phaneuf <pp@ludusdesign.com>
* Seth Spitzer <sspitzer@netscape.com>
*
* Alternatively, the contents of this file may be used under the terms of
@ -528,7 +528,7 @@ NS_IMETHODIMP nsMsgComposeService::TimeStamp(const char * label, PRBool resetTim
if (resetTime)
{
PR_LOG(MsgComposeLogModule, PR_LOG_ALWAYS, ("--------------------\n"));
PR_LOG(MsgComposeLogModule, PR_LOG_ALWAYS, ("\n[process]: [totalTime][deltaTime]\n--------------------\n"));
mStartTime = PR_IntervalNow();
mPreviousTime = mStartTime;
@ -543,7 +543,8 @@ NS_IMETHODIMP nsMsgComposeService::TimeStamp(const char * label, PRBool resetTim
#if defined(DEBUG_ducarroz)
printf(">>> Time Stamp: [%5d][%5d] - %s\n", totalTime, deltaTime, label);
#endif
PR_LOG(MsgComposeLogModule, PR_LOG_ALWAYS, ("[%5d][%5d] - %s\n", totalTime, deltaTime, label));
PR_LOG(MsgComposeLogModule, PR_LOG_ALWAYS, ("[%3.2f][%3.2f] - %s\n",
((double)totalTime/1000.0) + 0.005, ((double)deltaTime/1000.0) + 0.005, label));
mPreviousTime = now;
#endif